├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.styles.ts ├── App.test.tsx ├── App.tsx ├── components │ ├── AddArea │ │ ├── index.tsx │ │ └── styles.ts │ └── ListItem │ │ ├── index.tsx │ │ └── styles.ts ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts ├── setupTests.ts └── types │ └── Item.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/App.styles.ts -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AddArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/components/AddArea/index.tsx -------------------------------------------------------------------------------- /src/components/AddArea/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/components/AddArea/styles.ts -------------------------------------------------------------------------------- /src/components/ListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/components/ListItem/index.tsx -------------------------------------------------------------------------------- /src/components/ListItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/components/ListItem/styles.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/types/Item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/src/types/Item.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suporteb7web/todo-react/HEAD/tsconfig.json --------------------------------------------------------------------------------