Skip to content
This repository has been archived by the owner on Aug 17, 2024. It is now read-only.

Gmousse/react-firebase-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example of React application with firebase connection

To use it:

Install node_modules:

npm install

Then to launch it:

npm run dev

You can view the result on localhost:8080/public/

If you want to modify the interface, go in ./src/components/Interface.jsx.

With react-hot-loader you can see modifications directly in the browser without refreshing the page.

├── lib
│   ├── components
│   │   └── Interface.js
│   └── index.js
├── LICENSE
├── package.json
├── public
│   ├── index.html
│   └── index.js
├── README.md
├── src
│   ├── components
│   │   └── Interface.jsx
│   ├── css
│   │   └── main.css
│   └── index.js
└── webpack.config.js