├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── CardOne │ ├── CardOne.css │ └── CardOne.js ├── CardTwo │ ├── CardTwo.css │ └── CardTwo.js ├── Input │ ├── Input.css │ └── Input.js ├── Main │ ├── Main.css │ └── Main.js ├── assets │ ├── arrow.png │ ├── chat.gif │ ├── img1.jpg │ ├── manOne.png │ ├── manTwo.png │ └── pencil.png ├── index.js └── registerServiceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/CardOne/CardOne.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/CardOne/CardOne.css -------------------------------------------------------------------------------- /src/CardOne/CardOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/CardOne/CardOne.js -------------------------------------------------------------------------------- /src/CardTwo/CardTwo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/CardTwo/CardTwo.css -------------------------------------------------------------------------------- /src/CardTwo/CardTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/CardTwo/CardTwo.js -------------------------------------------------------------------------------- /src/Input/Input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/Input/Input.css -------------------------------------------------------------------------------- /src/Input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/Input/Input.js -------------------------------------------------------------------------------- /src/Main/Main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/Main/Main.css -------------------------------------------------------------------------------- /src/Main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/Main/Main.js -------------------------------------------------------------------------------- /src/assets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/assets/arrow.png -------------------------------------------------------------------------------- /src/assets/chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/assets/chat.gif -------------------------------------------------------------------------------- /src/assets/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/assets/img1.jpg -------------------------------------------------------------------------------- /src/assets/manOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/assets/manOne.png -------------------------------------------------------------------------------- /src/assets/manTwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/assets/manTwo.png -------------------------------------------------------------------------------- /src/assets/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/assets/pencil.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teffcode/ChatScrollAnimated/HEAD/yarn.lock --------------------------------------------------------------------------------