├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── app.jsx ├── components │ ├── cells.css │ ├── cells.jsx │ ├── firebase-table.jsx │ └── row.jsx ├── entry.js ├── index.html └── utils.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/package.json -------------------------------------------------------------------------------- /src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/app.jsx -------------------------------------------------------------------------------- /src/components/cells.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/components/cells.css -------------------------------------------------------------------------------- /src/components/cells.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/components/cells.jsx -------------------------------------------------------------------------------- /src/components/firebase-table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/components/firebase-table.jsx -------------------------------------------------------------------------------- /src/components/row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/components/row.jsx -------------------------------------------------------------------------------- /src/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/entry.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/index.html -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/src/utils.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisvxd/firestation/HEAD/webpack.config.js --------------------------------------------------------------------------------