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

Latest commit

 

History

History
executable file
·
38 lines (32 loc) · 839 Bytes

File metadata and controls

executable file
·
38 lines (32 loc) · 839 Bytes

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