├── .env ├── .gitignore ├── README.md ├── firebase.json ├── package.json ├── public ├── index.html └── robots.txt └── src ├── App.js ├── App.test.js ├── components └── ErrorMessage │ ├── ErrorMessage.css │ └── ErrorMessage.js ├── hooks └── useQueryString.js ├── index.css ├── index.js ├── scenes ├── CreateList │ ├── CreateList.css │ └── CreateList.js ├── EditList │ ├── AddItem │ │ ├── AddItem.css │ │ └── AddItem.js │ ├── EditList.css │ ├── EditList.js │ └── ItemList │ │ └── ItemList.js └── JoinList │ ├── JoinList.css │ └── JoinList.js ├── services └── firestore.js └── setupTests.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/ErrorMessage/ErrorMessage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/components/ErrorMessage/ErrorMessage.css -------------------------------------------------------------------------------- /src/components/ErrorMessage/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/components/ErrorMessage/ErrorMessage.js -------------------------------------------------------------------------------- /src/hooks/useQueryString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/hooks/useQueryString.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/index.js -------------------------------------------------------------------------------- /src/scenes/CreateList/CreateList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/CreateList/CreateList.css -------------------------------------------------------------------------------- /src/scenes/CreateList/CreateList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/CreateList/CreateList.js -------------------------------------------------------------------------------- /src/scenes/EditList/AddItem/AddItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/EditList/AddItem/AddItem.css -------------------------------------------------------------------------------- /src/scenes/EditList/AddItem/AddItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/EditList/AddItem/AddItem.js -------------------------------------------------------------------------------- /src/scenes/EditList/EditList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/EditList/EditList.css -------------------------------------------------------------------------------- /src/scenes/EditList/EditList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/EditList/EditList.js -------------------------------------------------------------------------------- /src/scenes/EditList/ItemList/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/EditList/ItemList/ItemList.js -------------------------------------------------------------------------------- /src/scenes/JoinList/JoinList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/JoinList/JoinList.css -------------------------------------------------------------------------------- /src/scenes/JoinList/JoinList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/scenes/JoinList/JoinList.js -------------------------------------------------------------------------------- /src/services/firestore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/services/firestore.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tammibriggs/firebase-with-react-hooks/HEAD/src/setupTests.js --------------------------------------------------------------------------------