├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .vscode └── launch.json ├── README.md ├── design ├── mockup.fw.png └── mockup2.fw.png ├── docs ├── Exemplo.md ├── Router.md ├── SonarQube.md └── Styles.md ├── package.json ├── public ├── favicon.ico ├── icon-192x192.png ├── icon-512x512.png ├── index.html ├── manifest.json └── robots.txt ├── sonar-project.properties └── src ├── App.css ├── App.js ├── App.test.js ├── assets ├── fonts │ ├── poppins-v6-latin-300.woff │ ├── poppins-v6-latin-300.woff2 │ ├── poppins-v6-latin-500.woff │ ├── poppins-v6-latin-500.woff2 │ ├── poppins-v6-latin-600.woff │ ├── poppins-v6-latin-600.woff2 │ ├── poppins-v6-latin-700.woff │ ├── poppins-v6-latin-700.woff2 │ ├── poppins-v6-latin-regular.woff │ └── poppins-v6-latin-regular.woff2 └── img │ ├── 404.gif │ ├── boilerplate.png │ └── rocket.png ├── commons └── styles │ ├── global.js │ └── theme.js ├── components └── Button │ ├── index.js │ └── style.js ├── index.css ├── index.js ├── logo.svg ├── routes ├── get-routes.js └── index.js ├── screens ├── Explore │ ├── assets │ │ └── img │ │ │ ├── alert-icon-alert.png │ │ │ ├── alert-icon-close.png │ │ │ ├── alert-icon-error.png │ │ │ ├── alert-icon-sucess.png │ │ │ ├── button-icon.png │ │ │ ├── eslint.gif │ │ │ └── rocket.png │ ├── commons │ │ └── layout │ │ │ ├── index.js │ │ │ └── style.js │ ├── components │ │ ├── Alert │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Button │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Form │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Grid │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Header │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Modal │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Sidebar │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Tabs │ │ │ └── index.js │ │ └── VirtualKeyboard │ │ │ ├── index.js │ │ │ └── style.js │ ├── routes │ │ └── index.js │ └── screens │ │ ├── Analise │ │ ├── index.js │ │ └── style.js │ │ ├── Components │ │ ├── Alert │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Button │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Form │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Grid │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Keyboard │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Modal │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Tabs │ │ │ ├── index.js │ │ │ └── style.js │ │ └── VirtualKeyboard │ │ │ ├── index.js │ │ │ └── style.js │ │ ├── Dependencias │ │ ├── index.js │ │ └── style.js │ │ ├── Documentacao │ │ ├── index.js │ │ └── style.js │ │ ├── Estrutura │ │ ├── index.js │ │ └── style.js │ │ ├── Home │ │ ├── index.js │ │ └── style.js │ │ └── Main │ │ ├── index.js │ │ └── style.js ├── Home │ ├── index.js │ └── style.js ├── Main │ ├── index.js │ └── style.js └── NoMatch │ ├── index.js │ └── style.js └── serviceWorker.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *node_modules 2 | *src.7z -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /design/mockup.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/design/mockup.fw.png -------------------------------------------------------------------------------- /design/mockup2.fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/design/mockup2.fw.png -------------------------------------------------------------------------------- /docs/Exemplo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/docs/Exemplo.md -------------------------------------------------------------------------------- /docs/Router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/docs/Router.md -------------------------------------------------------------------------------- /docs/SonarQube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/docs/SonarQube.md -------------------------------------------------------------------------------- /docs/Styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/docs/Styles.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/public/icon-192x192.png -------------------------------------------------------------------------------- /public/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/public/icon-512x512.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-300.woff -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-300.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-500.woff -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-500.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-600.woff -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-600.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/poppins-v6-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/fonts/poppins-v6-latin-regular.woff2 -------------------------------------------------------------------------------- /src/assets/img/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/img/404.gif -------------------------------------------------------------------------------- /src/assets/img/boilerplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/img/boilerplate.png -------------------------------------------------------------------------------- /src/assets/img/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/assets/img/rocket.png -------------------------------------------------------------------------------- /src/commons/styles/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/commons/styles/global.js -------------------------------------------------------------------------------- /src/commons/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/commons/styles/theme.js -------------------------------------------------------------------------------- /src/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/components/Button/index.js -------------------------------------------------------------------------------- /src/components/Button/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/components/Button/style.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/routes/get-routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/routes/get-routes.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/screens/Explore/assets/img/alert-icon-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/assets/img/alert-icon-alert.png -------------------------------------------------------------------------------- /src/screens/Explore/assets/img/alert-icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/assets/img/alert-icon-close.png -------------------------------------------------------------------------------- /src/screens/Explore/assets/img/alert-icon-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/assets/img/alert-icon-error.png -------------------------------------------------------------------------------- /src/screens/Explore/assets/img/alert-icon-sucess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/assets/img/alert-icon-sucess.png -------------------------------------------------------------------------------- /src/screens/Explore/assets/img/button-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/assets/img/button-icon.png -------------------------------------------------------------------------------- /src/screens/Explore/assets/img/eslint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/assets/img/eslint.gif -------------------------------------------------------------------------------- /src/screens/Explore/assets/img/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/assets/img/rocket.png -------------------------------------------------------------------------------- /src/screens/Explore/commons/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/commons/layout/index.js -------------------------------------------------------------------------------- /src/screens/Explore/commons/layout/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/commons/layout/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Alert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Alert/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Alert/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Alert/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Button/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Button/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Button/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Form/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Form/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Form/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Grid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Grid/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Grid/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Grid/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Header/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Header/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Header/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Modal/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Modal/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Modal/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Sidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Sidebar/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Sidebar/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Sidebar/style.js -------------------------------------------------------------------------------- /src/screens/Explore/components/Tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/Tabs/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/VirtualKeyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/VirtualKeyboard/index.js -------------------------------------------------------------------------------- /src/screens/Explore/components/VirtualKeyboard/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/components/VirtualKeyboard/style.js -------------------------------------------------------------------------------- /src/screens/Explore/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/routes/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Analise/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Analise/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Analise/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Analise/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Alert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Alert/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Alert/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Alert/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Button/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Button/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Button/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Form/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Form/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Form/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Grid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Grid/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Grid/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Grid/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Keyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Keyboard/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Keyboard/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Keyboard/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Modal/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Modal/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Modal/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Tabs/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/Tabs/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/Tabs/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/VirtualKeyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/VirtualKeyboard/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Components/VirtualKeyboard/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Components/VirtualKeyboard/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Dependencias/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Dependencias/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Dependencias/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Dependencias/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Documentacao/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Documentacao/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Documentacao/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Documentacao/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Estrutura/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Estrutura/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Estrutura/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Estrutura/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Home/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Home/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Home/style.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Main/index.js -------------------------------------------------------------------------------- /src/screens/Explore/screens/Main/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Explore/screens/Main/style.js -------------------------------------------------------------------------------- /src/screens/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Home/index.js -------------------------------------------------------------------------------- /src/screens/Home/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Home/style.js -------------------------------------------------------------------------------- /src/screens/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Main/index.js -------------------------------------------------------------------------------- /src/screens/Main/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/Main/style.js -------------------------------------------------------------------------------- /src/screens/NoMatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/NoMatch/index.js -------------------------------------------------------------------------------- /src/screens/NoMatch/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/screens/NoMatch/style.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snksergio/Boilerplate/HEAD/src/serviceWorker.js --------------------------------------------------------------------------------