Hello everyone, in this guide I will show you how to set up basic authentication in React with Firebase. We will be also using react-router for cre...
For further actions, you may consider blocking this person and/or reporting abuse
Thank you very much for your article!
I couldn't setup Firebase auth except with your tutorial!
How can I display, let's say the user email?
Cheers!
Hi, you can get current users details with
auth.currentUser
, to display an email address you can do something like this:<p>{auth.currentUser.email}</p>
Hope this helps!
Thank you I succeed exactly the same way!
Iām very new to programming, and even if login is a basic feature, it is really hard to learn !
I shared this tutorial to all of my boot camp colleagues!
How to use Firebase Firestore with Redux-toolkit?
Hi, unfortunately I'm not familiar with Firestore, this article is only about authentication which doesn't require Firestore, you can use any other database with this setup
What do you wanna do?
Hi, I'm using your useEffect code, and I get : Error: Invalid hook call. Hooks can only be called inside of the body of a function component.
Hi, if you tried to manually copy code from here, it is possible that you pasted it in wrong place, you can check repository and compare the difference github.com/PDavor/react-firebase
Thanks, I fixed it!
This article helps! <3
Great Article ā¤
Thank you very much :)