Writing Data

Writing Data to your Firebase Realtime Database

Let's start by adding a way to the user to add data to the their firebase database.

To do this we will be using the FirebaseDatabaseMutation component from @react-firebase/database.

User Input UI

When a user clicks on the + button we want to push data to user_bookmarks/

The data should have the following shape :

You can see the full code here.

Last updated