├── .eslintcache ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── components ├── ChatFeed.jsx ├── LoginForm.jsx ├── MessageForm.jsx ├── MyMessage.jsx └── TheirMessage.jsx └── index.js /.eslintcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/.eslintcache -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: adrianhajdin 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/ChatFeed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/components/ChatFeed.jsx -------------------------------------------------------------------------------- /src/components/LoginForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/components/LoginForm.jsx -------------------------------------------------------------------------------- /src/components/MessageForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/components/MessageForm.jsx -------------------------------------------------------------------------------- /src/components/MyMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/components/MyMessage.jsx -------------------------------------------------------------------------------- /src/components/TheirMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/components/TheirMessage.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianhajdin/chat_application/HEAD/src/index.js --------------------------------------------------------------------------------