├── README.md ├── package.json ├── template.json └── template ├── .editorconfig ├── .env ├── .storybook └── main.js ├── README.md ├── gitignore ├── jsconfig.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── app.js ├── index.js ├── serviceWorker.js ├── setupTests.js ├── storyshots └── storyshots.test.js └── ui └── title ├── index.js ├── title.js └── title.stories.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/package.json -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template.json -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /template/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/.storybook/main.js -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/README.md -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/gitignore -------------------------------------------------------------------------------- /template/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/jsconfig.json -------------------------------------------------------------------------------- /template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/public/favicon.ico -------------------------------------------------------------------------------- /template/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/public/index.html -------------------------------------------------------------------------------- /template/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/public/logo192.png -------------------------------------------------------------------------------- /template/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/public/logo512.png -------------------------------------------------------------------------------- /template/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/public/manifest.json -------------------------------------------------------------------------------- /template/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/public/robots.txt -------------------------------------------------------------------------------- /template/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/src/app.js -------------------------------------------------------------------------------- /template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/src/index.js -------------------------------------------------------------------------------- /template/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/src/serviceWorker.js -------------------------------------------------------------------------------- /template/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/src/setupTests.js -------------------------------------------------------------------------------- /template/src/storyshots/storyshots.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/src/storyshots/storyshots.test.js -------------------------------------------------------------------------------- /template/src/ui/title/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './title' 2 | -------------------------------------------------------------------------------- /template/src/ui/title/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/src/ui/title/title.js -------------------------------------------------------------------------------- /template/src/ui/title/title.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukinco/cra-template-lukin/HEAD/template/src/ui/title/title.stories.js --------------------------------------------------------------------------------