├── .gitignore ├── LICENSE ├── README.md └── template ├── .gitignore ├── README.md ├── package.json └── src ├── .babelrc ├── assets ├── favicon.ico └── icons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── mstile-150x150.png ├── components ├── app.js └── header │ └── index.js ├── index.js ├── manifest.json ├── routes ├── home │ └── index.js └── profile │ └── index.js └── tests ├── __mocks__ ├── browserMocks.js └── fileMocks.js └── header.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/README.md -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/README.md -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/.babelrc -------------------------------------------------------------------------------- /template/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/assets/favicon.ico -------------------------------------------------------------------------------- /template/src/assets/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/assets/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /template/src/assets/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/assets/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /template/src/assets/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/assets/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /template/src/assets/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/assets/icons/favicon-16x16.png -------------------------------------------------------------------------------- /template/src/assets/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/assets/icons/favicon-32x32.png -------------------------------------------------------------------------------- /template/src/assets/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/assets/icons/mstile-150x150.png -------------------------------------------------------------------------------- /template/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/components/app.js -------------------------------------------------------------------------------- /template/src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/components/header/index.js -------------------------------------------------------------------------------- /template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/index.js -------------------------------------------------------------------------------- /template/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/manifest.json -------------------------------------------------------------------------------- /template/src/routes/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/routes/home/index.js -------------------------------------------------------------------------------- /template/src/routes/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/routes/profile/index.js -------------------------------------------------------------------------------- /template/src/tests/__mocks__/browserMocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/tests/__mocks__/browserMocks.js -------------------------------------------------------------------------------- /template/src/tests/__mocks__/fileMocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/tests/__mocks__/fileMocks.js -------------------------------------------------------------------------------- /template/src/tests/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaraVieira/styled/HEAD/template/src/tests/header.test.js --------------------------------------------------------------------------------