├── cadastro-produtos ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── app │ │ └── produtoService.js │ ├── components │ │ ├── card.js │ │ └── navbar.js │ ├── index.css │ ├── index.js │ ├── rotas.js │ └── views │ │ ├── home.js │ │ └── produtos │ │ ├── cadastro.js │ │ ├── consulta.js │ │ └── produtosTable.js └── yarn.lock ├── convidados ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.tsx │ ├── contatos │ │ ├── Form.tsx │ │ ├── List.tsx │ │ ├── contato.ts │ │ ├── index.css │ │ ├── index.tsx │ │ └── useContatosLogic.ts │ ├── index.tsx │ └── react-app-env.d.ts ├── tsconfig.json └── yarn.lock ├── iniciando-com-react ├── .gitignore ├── .vscode │ └── settings.json ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── serviceWorker.js │ └── setupTests.js └── yarn.lock ├── react-funcional ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── UseEffect.js │ ├── UseState.js │ ├── index.js │ └── reducer │ │ ├── index.js │ │ └── somaReducer.js └── yarn.lock └── react-material-dashboard ├── .editorconfig ├── .env.example ├── .env.production ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── jsconfig.json ├── package.json ├── public ├── _redirects ├── favicon.ico ├── images │ ├── auth.jpg │ ├── avatars │ │ ├── avatar_1.png │ │ ├── avatar_10.png │ │ ├── avatar_11.png │ │ ├── avatar_2.png │ │ ├── avatar_3.png │ │ ├── avatar_4.png │ │ ├── avatar_5.png │ │ ├── avatar_6.png │ │ ├── avatar_7.png │ │ ├── avatar_8.png │ │ └── avatar_9.png │ ├── logos │ │ └── logo--white.svg │ ├── not_found.png │ ├── products │ │ ├── product_1.png │ │ ├── product_2.png │ │ ├── product_3.png │ │ ├── product_4.png │ │ ├── product_5.png │ │ └── product_6.png │ ├── undraw_page_not_found_su7k.svg │ └── undraw_resume_folder_2_arse.svg ├── index.html └── manifest.json ├── src ├── App.js ├── Routes.js ├── assets │ └── scss │ │ └── index.scss ├── common │ └── validators.js ├── components │ ├── RouteWithLayout │ │ ├── RouteWithLayout.js │ │ └── index.js │ ├── SearchInput │ │ ├── SearchInput.js │ │ └── index.js │ ├── StatusBullet │ │ ├── StatusBullet.js │ │ └── index.js │ └── index.js ├── helpers │ ├── chartjs.js │ ├── getInitials.js │ └── index.js ├── icons │ ├── Facebook │ │ └── index.js │ ├── Google │ │ └── index.js │ └── index.js ├── index.js ├── layouts │ ├── Main │ │ ├── Main.js │ │ ├── components │ │ │ ├── Footer │ │ │ │ ├── Footer.js │ │ │ │ └── index.js │ │ │ ├── Sidebar │ │ │ │ ├── Sidebar.js │ │ │ │ ├── components │ │ │ │ │ ├── Profile │ │ │ │ │ │ ├── Profile.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── SidebarNav │ │ │ │ │ │ ├── SidebarNav.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── UpgradePlan │ │ │ │ │ │ ├── UpgradePlan.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── Topbar │ │ │ │ ├── Topbar.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── index.js │ ├── Minimal │ │ ├── Minimal.js │ │ ├── components │ │ │ ├── Topbar │ │ │ │ ├── Topbar.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── index.js │ └── index.js ├── serviceWorker.js ├── store │ ├── index.js │ ├── mensagensReducer.js │ └── tarefasReducer.js ├── theme │ ├── index.js │ ├── overrides │ │ ├── MuiButton.js │ │ ├── MuiIconButton.js │ │ ├── MuiPaper.js │ │ ├── MuiTableCell.js │ │ ├── MuiTableHead.js │ │ ├── MuiTableRow.js │ │ ├── MuiTypography.js │ │ └── index.js │ ├── palette.js │ └── typography.js └── views │ ├── Account │ ├── Account.js │ ├── components │ │ ├── AccountDetails │ │ │ ├── AccountDetails.js │ │ │ └── index.js │ │ ├── AccountProfile │ │ │ ├── AccountProfile.js │ │ │ └── index.js │ │ └── index.js │ └── index.js │ ├── Dashboard │ ├── Dashboard.js │ ├── components │ │ ├── Budget │ │ │ ├── Budget.js │ │ │ └── index.js │ │ ├── LatestOrders │ │ │ ├── LatestOrders.js │ │ │ ├── data.js │ │ │ └── index.js │ │ ├── LatestProducts │ │ │ ├── LatestProducts.js │ │ │ ├── data.js │ │ │ └── index.js │ │ ├── LatestSales │ │ │ ├── LatestSales.js │ │ │ ├── chart.js │ │ │ └── index.js │ │ ├── TasksProgress │ │ │ ├── TasksProgress.js │ │ │ └── index.js │ │ ├── TotalProfit │ │ │ ├── TotalProfit.js │ │ │ └── index.js │ │ ├── TotalUsers │ │ │ ├── TotalUsers.js │ │ │ └── index.js │ │ ├── UsersByDevice │ │ │ ├── UsersByDevice.js │ │ │ └── index.js │ │ └── index.js │ └── index.js │ ├── Icons │ ├── Icons.js │ └── index.js │ ├── NotFound │ ├── NotFound.js │ └── index.js │ ├── ProductList │ ├── ProductList.js │ ├── components │ │ ├── ProductCard │ │ │ ├── ProductCard.js │ │ │ └── index.js │ │ ├── ProductsToolbar │ │ │ ├── ProductsToolbar.js │ │ │ └── index.js │ │ └── index.js │ ├── data.js │ └── index.js │ ├── Settings │ ├── Settings.js │ ├── components │ │ ├── Notifications │ │ │ ├── Notifications.js │ │ │ └── index.js │ │ ├── Password │ │ │ ├── Password.js │ │ │ └── index.js │ │ └── index.js │ └── index.js │ ├── SignIn │ ├── SignIn.js │ └── index.js │ ├── SignUp │ ├── SignUp.js │ └── index.js │ ├── TarefaList │ ├── TarefaList.js │ ├── components │ │ ├── TarefasTable │ │ │ ├── TarefasTable.js │ │ │ └── index.js │ │ ├── TarefasToolbar │ │ │ ├── TarefasToolbar.js │ │ │ └── index.js │ │ └── index.js │ └── index.js │ ├── Typography │ ├── Typography.js │ └── index.js │ └── index.js └── yarn.lock /cadastro-produtos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/.gitignore -------------------------------------------------------------------------------- /cadastro-produtos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/README.md -------------------------------------------------------------------------------- /cadastro-produtos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/package.json -------------------------------------------------------------------------------- /cadastro-produtos/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/public/favicon.ico -------------------------------------------------------------------------------- /cadastro-produtos/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/public/index.html -------------------------------------------------------------------------------- /cadastro-produtos/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/public/logo192.png -------------------------------------------------------------------------------- /cadastro-produtos/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/public/logo512.png -------------------------------------------------------------------------------- /cadastro-produtos/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/public/manifest.json -------------------------------------------------------------------------------- /cadastro-produtos/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/public/robots.txt -------------------------------------------------------------------------------- /cadastro-produtos/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/App.js -------------------------------------------------------------------------------- /cadastro-produtos/src/app/produtoService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/app/produtoService.js -------------------------------------------------------------------------------- /cadastro-produtos/src/components/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/components/card.js -------------------------------------------------------------------------------- /cadastro-produtos/src/components/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/components/navbar.js -------------------------------------------------------------------------------- /cadastro-produtos/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cadastro-produtos/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/index.js -------------------------------------------------------------------------------- /cadastro-produtos/src/rotas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/rotas.js -------------------------------------------------------------------------------- /cadastro-produtos/src/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/views/home.js -------------------------------------------------------------------------------- /cadastro-produtos/src/views/produtos/cadastro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/views/produtos/cadastro.js -------------------------------------------------------------------------------- /cadastro-produtos/src/views/produtos/consulta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/views/produtos/consulta.js -------------------------------------------------------------------------------- /cadastro-produtos/src/views/produtos/produtosTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/src/views/produtos/produtosTable.js -------------------------------------------------------------------------------- /cadastro-produtos/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/cadastro-produtos/yarn.lock -------------------------------------------------------------------------------- /convidados/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/.gitignore -------------------------------------------------------------------------------- /convidados/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/README.md -------------------------------------------------------------------------------- /convidados/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/package.json -------------------------------------------------------------------------------- /convidados/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/public/favicon.ico -------------------------------------------------------------------------------- /convidados/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/public/index.html -------------------------------------------------------------------------------- /convidados/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/public/logo192.png -------------------------------------------------------------------------------- /convidados/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/public/logo512.png -------------------------------------------------------------------------------- /convidados/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/public/manifest.json -------------------------------------------------------------------------------- /convidados/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/public/robots.txt -------------------------------------------------------------------------------- /convidados/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/App.tsx -------------------------------------------------------------------------------- /convidados/src/contatos/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/contatos/Form.tsx -------------------------------------------------------------------------------- /convidados/src/contatos/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/contatos/List.tsx -------------------------------------------------------------------------------- /convidados/src/contatos/contato.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/contatos/contato.ts -------------------------------------------------------------------------------- /convidados/src/contatos/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/contatos/index.css -------------------------------------------------------------------------------- /convidados/src/contatos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/contatos/index.tsx -------------------------------------------------------------------------------- /convidados/src/contatos/useContatosLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/contatos/useContatosLogic.ts -------------------------------------------------------------------------------- /convidados/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/src/index.tsx -------------------------------------------------------------------------------- /convidados/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /convidados/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/tsconfig.json -------------------------------------------------------------------------------- /convidados/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/convidados/yarn.lock -------------------------------------------------------------------------------- /iniciando-com-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/.gitignore -------------------------------------------------------------------------------- /iniciando-com-react/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /iniciando-com-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/README.md -------------------------------------------------------------------------------- /iniciando-com-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/package.json -------------------------------------------------------------------------------- /iniciando-com-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/public/favicon.ico -------------------------------------------------------------------------------- /iniciando-com-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/public/index.html -------------------------------------------------------------------------------- /iniciando-com-react/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/public/logo192.png -------------------------------------------------------------------------------- /iniciando-com-react/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/public/logo512.png -------------------------------------------------------------------------------- /iniciando-com-react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/public/manifest.json -------------------------------------------------------------------------------- /iniciando-com-react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/public/robots.txt -------------------------------------------------------------------------------- /iniciando-com-react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/App.css -------------------------------------------------------------------------------- /iniciando-com-react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/App.js -------------------------------------------------------------------------------- /iniciando-com-react/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/App.test.js -------------------------------------------------------------------------------- /iniciando-com-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/index.css -------------------------------------------------------------------------------- /iniciando-com-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/index.js -------------------------------------------------------------------------------- /iniciando-com-react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/logo.svg -------------------------------------------------------------------------------- /iniciando-com-react/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/serviceWorker.js -------------------------------------------------------------------------------- /iniciando-com-react/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/src/setupTests.js -------------------------------------------------------------------------------- /iniciando-com-react/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/iniciando-com-react/yarn.lock -------------------------------------------------------------------------------- /react-funcional/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/.gitignore -------------------------------------------------------------------------------- /react-funcional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/README.md -------------------------------------------------------------------------------- /react-funcional/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/package.json -------------------------------------------------------------------------------- /react-funcional/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/public/favicon.ico -------------------------------------------------------------------------------- /react-funcional/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/public/index.html -------------------------------------------------------------------------------- /react-funcional/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/public/logo192.png -------------------------------------------------------------------------------- /react-funcional/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/public/logo512.png -------------------------------------------------------------------------------- /react-funcional/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/public/manifest.json -------------------------------------------------------------------------------- /react-funcional/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/public/robots.txt -------------------------------------------------------------------------------- /react-funcional/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/src/App.js -------------------------------------------------------------------------------- /react-funcional/src/UseEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/src/UseEffect.js -------------------------------------------------------------------------------- /react-funcional/src/UseState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/src/UseState.js -------------------------------------------------------------------------------- /react-funcional/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/src/index.js -------------------------------------------------------------------------------- /react-funcional/src/reducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/src/reducer/index.js -------------------------------------------------------------------------------- /react-funcional/src/reducer/somaReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/src/reducer/somaReducer.js -------------------------------------------------------------------------------- /react-funcional/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-funcional/yarn.lock -------------------------------------------------------------------------------- /react-material-dashboard/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/.editorconfig -------------------------------------------------------------------------------- /react-material-dashboard/.env.example: -------------------------------------------------------------------------------- 1 | REACT_APP_GA_MEASUREMENT_ID= -------------------------------------------------------------------------------- /react-material-dashboard/.env.production: -------------------------------------------------------------------------------- 1 | REACT_APP_API_BASEURL=https://minhastarefas-api.herokuapp.com -------------------------------------------------------------------------------- /react-material-dashboard/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/.eslintrc -------------------------------------------------------------------------------- /react-material-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/.gitignore -------------------------------------------------------------------------------- /react-material-dashboard/.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-material-dashboard/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/.prettierrc -------------------------------------------------------------------------------- /react-material-dashboard/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/CHANGELOG.md -------------------------------------------------------------------------------- /react-material-dashboard/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/LICENSE.md -------------------------------------------------------------------------------- /react-material-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/README.md -------------------------------------------------------------------------------- /react-material-dashboard/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/jsconfig.json -------------------------------------------------------------------------------- /react-material-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/package.json -------------------------------------------------------------------------------- /react-material-dashboard/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/_redirects -------------------------------------------------------------------------------- /react-material-dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/favicon.ico -------------------------------------------------------------------------------- /react-material-dashboard/public/images/auth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/auth.jpg -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_1.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_10.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_11.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_2.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_3.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_4.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_5.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_6.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_7.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_8.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/avatars/avatar_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/avatars/avatar_9.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/logos/logo--white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/logos/logo--white.svg -------------------------------------------------------------------------------- /react-material-dashboard/public/images/not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/not_found.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/products/product_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/products/product_1.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/products/product_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/products/product_2.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/products/product_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/products/product_3.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/products/product_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/products/product_4.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/products/product_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/products/product_5.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/products/product_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/products/product_6.png -------------------------------------------------------------------------------- /react-material-dashboard/public/images/undraw_page_not_found_su7k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/undraw_page_not_found_su7k.svg -------------------------------------------------------------------------------- /react-material-dashboard/public/images/undraw_resume_folder_2_arse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/images/undraw_resume_folder_2_arse.svg -------------------------------------------------------------------------------- /react-material-dashboard/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/index.html -------------------------------------------------------------------------------- /react-material-dashboard/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/public/manifest.json -------------------------------------------------------------------------------- /react-material-dashboard/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/App.js -------------------------------------------------------------------------------- /react-material-dashboard/src/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/Routes.js -------------------------------------------------------------------------------- /react-material-dashboard/src/assets/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/assets/scss/index.scss -------------------------------------------------------------------------------- /react-material-dashboard/src/common/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/common/validators.js -------------------------------------------------------------------------------- /react-material-dashboard/src/components/RouteWithLayout/RouteWithLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/components/RouteWithLayout/RouteWithLayout.js -------------------------------------------------------------------------------- /react-material-dashboard/src/components/RouteWithLayout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './RouteWithLayout'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/components/SearchInput/SearchInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/components/SearchInput/SearchInput.js -------------------------------------------------------------------------------- /react-material-dashboard/src/components/SearchInput/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SearchInput'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/components/StatusBullet/StatusBullet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/components/StatusBullet/StatusBullet.js -------------------------------------------------------------------------------- /react-material-dashboard/src/components/StatusBullet/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './StatusBullet' -------------------------------------------------------------------------------- /react-material-dashboard/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/helpers/chartjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/helpers/chartjs.js -------------------------------------------------------------------------------- /react-material-dashboard/src/helpers/getInitials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/helpers/getInitials.js -------------------------------------------------------------------------------- /react-material-dashboard/src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/helpers/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/icons/Facebook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/icons/Facebook/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/icons/Google/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/icons/Google/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/icons/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/Main.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/Footer/Footer.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Footer/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Footer'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/Sidebar/Sidebar.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/components/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/Sidebar/components/Profile/Profile.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/components/Profile/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Profile'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/components/SidebarNav/SidebarNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/Sidebar/components/SidebarNav/SidebarNav.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/components/SidebarNav/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SidebarNav'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/components/UpgradePlan/UpgradePlan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/Sidebar/components/UpgradePlan/UpgradePlan.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/components/UpgradePlan/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './UpgradePlan'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/Sidebar/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Sidebar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Sidebar'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Topbar/Topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/Topbar/Topbar.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/Topbar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Topbar'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Main/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Main/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Main'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Minimal/Minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Minimal/Minimal.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Minimal/components/Topbar/Topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Minimal/components/Topbar/Topbar.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Minimal/components/Topbar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Topbar'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Minimal/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/Minimal/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/Minimal/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Minimal'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/layouts/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/serviceWorker.js -------------------------------------------------------------------------------- /react-material-dashboard/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/store/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/store/mensagensReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/store/mensagensReducer.js -------------------------------------------------------------------------------- /react-material-dashboard/src/store/tarefasReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/store/tarefasReducer.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/MuiButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/MuiButton.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/MuiIconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/MuiIconButton.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/MuiPaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/MuiPaper.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/MuiTableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/MuiTableCell.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/MuiTableHead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/MuiTableHead.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/MuiTableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/MuiTableRow.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/MuiTypography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/MuiTypography.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/overrides/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/overrides/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/palette.js -------------------------------------------------------------------------------- /react-material-dashboard/src/theme/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/theme/typography.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Account/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Account/Account.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Account/components/AccountDetails/AccountDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Account/components/AccountDetails/AccountDetails.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Account/components/AccountDetails/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AccountDetails'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Account/components/AccountProfile/AccountProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Account/components/AccountProfile/AccountProfile.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Account/components/AccountProfile/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './AccountProfile'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Account/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Account/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Account/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Account'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/Dashboard.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/Budget/Budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/Budget/Budget.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/Budget/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Budget'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestOrders/LatestOrders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/LatestOrders/LatestOrders.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestOrders/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/LatestOrders/data.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestOrders/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './LatestOrders'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestProducts/LatestProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/LatestProducts/LatestProducts.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestProducts/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/LatestProducts/data.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestProducts/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './LatestProducts'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestSales/LatestSales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/LatestSales/LatestSales.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestSales/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/LatestSales/chart.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/LatestSales/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './LatestSales'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/TasksProgress/TasksProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/TasksProgress/TasksProgress.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/TasksProgress/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TasksProgress'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/TotalProfit/TotalProfit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/TotalProfit/TotalProfit.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/TotalProfit/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TotalProfit'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/TotalUsers/TotalUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/TotalUsers/TotalUsers.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/TotalUsers/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TotalUsers'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/UsersByDevice/UsersByDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/UsersByDevice/UsersByDevice.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/UsersByDevice/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './UsersByDevice'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Dashboard/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Dashboard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Dashboard'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Icons/Icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Icons/Icons.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Icons/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Icons'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/NotFound/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/NotFound/NotFound.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/NotFound/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './NotFound'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/ProductList/ProductList.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/components/ProductCard/ProductCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/ProductList/components/ProductCard/ProductCard.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/components/ProductCard/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProductCard'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/components/ProductsToolbar/ProductsToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/ProductList/components/ProductsToolbar/ProductsToolbar.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/components/ProductsToolbar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProductsToolbar'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/ProductList/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/ProductList/data.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/ProductList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ProductList'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Settings/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Settings/Settings.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Settings/components/Notifications/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Settings/components/Notifications/Notifications.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Settings/components/Notifications/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Notifications'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Settings/components/Password/Password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Settings/components/Password/Password.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Settings/components/Password/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Password'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Settings/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Settings/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Settings/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Settings'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/SignIn/SignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/SignIn/SignIn.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/SignIn/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SignIn'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/SignUp/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/SignUp/SignUp.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/SignUp/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './SignUp'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/TarefaList/TarefaList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/TarefaList/TarefaList.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/TarefaList/components/TarefasTable/TarefasTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/TarefaList/components/TarefasTable/TarefasTable.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/TarefaList/components/TarefasTable/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TarefasTable' -------------------------------------------------------------------------------- /react-material-dashboard/src/views/TarefaList/components/TarefasToolbar/TarefasToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/TarefaList/components/TarefasToolbar/TarefasToolbar.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/TarefaList/components/TarefasToolbar/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TarefasToolbar'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/TarefaList/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/TarefaList/components/index.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/TarefaList/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './TarefaList'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Typography/Typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/Typography/Typography.js -------------------------------------------------------------------------------- /react-material-dashboard/src/views/Typography/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Typography'; 2 | -------------------------------------------------------------------------------- /react-material-dashboard/src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/src/views/index.js -------------------------------------------------------------------------------- /react-material-dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cursodsousa/curso-react-2020/HEAD/react-material-dashboard/yarn.lock --------------------------------------------------------------------------------