├── .gitignore ├── LICENSE ├── README.md └── template ├── .gitignore ├── README.md ├── package.json ├── src ├── 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 │ ├── preact-logo-inverse.svg │ └── preact-logo.svg ├── components │ ├── app.js │ └── header │ │ ├── index.js │ │ └── style.css ├── index.js ├── manifest.json ├── routes │ ├── home │ │ ├── index.js │ │ └── style.css │ └── profile │ │ └── index.js └── style │ └── index.css └── tests ├── __mocks__ ├── browserMocks.js ├── fileMocks.js └── setupTests.js └── header.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/README.md -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /build 3 | /*.log 4 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/README.md -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/favicon.ico -------------------------------------------------------------------------------- /template/src/assets/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /template/src/assets/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /template/src/assets/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /template/src/assets/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/icons/favicon-16x16.png -------------------------------------------------------------------------------- /template/src/assets/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/icons/favicon-32x32.png -------------------------------------------------------------------------------- /template/src/assets/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/icons/mstile-150x150.png -------------------------------------------------------------------------------- /template/src/assets/preact-logo-inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/preact-logo-inverse.svg -------------------------------------------------------------------------------- /template/src/assets/preact-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/assets/preact-logo.svg -------------------------------------------------------------------------------- /template/src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/components/app.js -------------------------------------------------------------------------------- /template/src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/components/header/index.js -------------------------------------------------------------------------------- /template/src/components/header/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/components/header/style.css -------------------------------------------------------------------------------- /template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/index.js -------------------------------------------------------------------------------- /template/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/manifest.json -------------------------------------------------------------------------------- /template/src/routes/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/routes/home/index.js -------------------------------------------------------------------------------- /template/src/routes/home/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/routes/home/style.css -------------------------------------------------------------------------------- /template/src/routes/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/routes/profile/index.js -------------------------------------------------------------------------------- /template/src/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/src/style/index.css -------------------------------------------------------------------------------- /template/tests/__mocks__/browserMocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/tests/__mocks__/browserMocks.js -------------------------------------------------------------------------------- /template/tests/__mocks__/fileMocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/tests/__mocks__/fileMocks.js -------------------------------------------------------------------------------- /template/tests/__mocks__/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/tests/__mocks__/setupTests.js -------------------------------------------------------------------------------- /template/tests/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preactjs-templates/default/HEAD/template/tests/header.test.js --------------------------------------------------------------------------------