├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── components ├── Card.jsx ├── ListCharacters.jsx └── Pagination.jsx ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/src/components/Card.jsx -------------------------------------------------------------------------------- /src/components/ListCharacters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/src/components/ListCharacters.jsx -------------------------------------------------------------------------------- /src/components/Pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/src/components/Pagination.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alejandroq12/my-app/HEAD/src/index.js --------------------------------------------------------------------------------