├── .eslintrc ├── .firebaserc ├── .gitignore ├── README.md ├── firebase.json ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── Components │ ├── Comment.js │ ├── Comments.js │ ├── Footer.js │ ├── NewComment.js │ └── base.js ├── index.js ├── react.svg ├── registerServiceWorker.js └── setupTests.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["react-app", "plugin:prettier/recommended"] 3 | } 4 | -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Components/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/Components/Comment.js -------------------------------------------------------------------------------- /src/Components/Comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/Components/Comments.js -------------------------------------------------------------------------------- /src/Components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/Components/Footer.js -------------------------------------------------------------------------------- /src/Components/NewComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/Components/NewComment.js -------------------------------------------------------------------------------- /src/Components/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/Components/base.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/react.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariorodeghiero/reactjs-comments-app/HEAD/yarn.lock --------------------------------------------------------------------------------