├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json ├── public └── index.html ├── src ├── App.css ├── App.tsx ├── assets │ ├── background.svg │ └── logo.svg ├── components │ └── Dropzone │ │ ├── index.tsx │ │ └── styles.css ├── index.tsx ├── pages │ ├── CreateLocation │ │ ├── index.tsx │ │ └── styles.css │ └── Home │ │ ├── index.tsx │ │ └── styles.css ├── react-app-env.d.ts ├── routes.tsx ├── services │ └── api.ts └── setupTests.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/assets/background.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/Dropzone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/components/Dropzone/index.tsx -------------------------------------------------------------------------------- /src/components/Dropzone/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/components/Dropzone/styles.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/CreateLocation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/pages/CreateLocation/index.tsx -------------------------------------------------------------------------------- /src/pages/CreateLocation/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/pages/CreateLocation/styles.css -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/pages/Home/styles.css -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/services/api.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aluiziodeveloper/mini-curso-reactjs/HEAD/yarn.lock --------------------------------------------------------------------------------