react-hooks-firebase
v1.0.1
Published
A Custom React Hooks for Firebase 🔥
Downloads
4
Readme
React-hooks-firebase
A Custom React Hooks for Firebase 🔥
Motivation
I love Firebase so much and I used it for my playground to build a Web app or Mobile app. Instead of re-creating the initial project from scratch I just want to create a tool
Installation
npm i --save react-hooks-firebase
Usage
import { useFirebase } from 'react-hooks-firebase';
const config = {
// your firebase project config
}
const Component = () => {
const { auth, database, storage } = useFirebase(config, options);
};