├── .env ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt ├── screenshot.png ├── src ├── components │ ├── button │ │ ├── Button.js │ │ ├── Button.test.js │ │ └── index.js │ ├── globalStyle │ │ ├── GlobalStyle.js │ │ └── index.js │ ├── index.js │ └── quotes │ │ ├── Quotes.js │ │ ├── Quotes.test.js │ │ └── index.js ├── images │ ├── bg.jpeg │ └── naruto.png ├── index.js ├── pages │ ├── app │ │ ├── App.js │ │ ├── App.test.js │ │ └── index.js │ └── index.js ├── services │ ├── index.js │ └── quotesService │ │ ├── index.js │ │ ├── quotesService.js │ │ └── quotesService.test.js ├── setupTests.js └── sounds │ └── jutso.mp3 └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API=http://localhost:5000/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/public/robots.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/components/button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/components/button/Button.js -------------------------------------------------------------------------------- /src/components/button/Button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/components/button/Button.test.js -------------------------------------------------------------------------------- /src/components/button/index.js: -------------------------------------------------------------------------------- 1 | export * from './Button'; 2 | -------------------------------------------------------------------------------- /src/components/globalStyle/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/components/globalStyle/GlobalStyle.js -------------------------------------------------------------------------------- /src/components/globalStyle/index.js: -------------------------------------------------------------------------------- 1 | export * from './GlobalStyle'; 2 | -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/quotes/Quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/components/quotes/Quotes.js -------------------------------------------------------------------------------- /src/components/quotes/Quotes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/components/quotes/Quotes.test.js -------------------------------------------------------------------------------- /src/components/quotes/index.js: -------------------------------------------------------------------------------- 1 | export * from './Quotes'; 2 | -------------------------------------------------------------------------------- /src/images/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/images/bg.jpeg -------------------------------------------------------------------------------- /src/images/naruto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/images/naruto.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/pages/app/App.js -------------------------------------------------------------------------------- /src/pages/app/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/pages/app/App.test.js -------------------------------------------------------------------------------- /src/pages/app/index.js: -------------------------------------------------------------------------------- 1 | export * from './App'; 2 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | -------------------------------------------------------------------------------- /src/services/index.js: -------------------------------------------------------------------------------- 1 | export * from './quotesService'; 2 | -------------------------------------------------------------------------------- /src/services/quotesService/index.js: -------------------------------------------------------------------------------- 1 | export * from './quotesService'; 2 | -------------------------------------------------------------------------------- /src/services/quotesService/quotesService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/services/quotesService/quotesService.js -------------------------------------------------------------------------------- /src/services/quotesService/quotesService.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/services/quotesService/quotesService.test.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/sounds/jutso.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/src/sounds/jutso.mp3 -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celso-henrique/naruto-quotes-client/HEAD/yarn.lock --------------------------------------------------------------------------------