├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── css └── main.css ├── dist ├── Main.js └── Main.min.js ├── images ├── deploy.png ├── storybook-example.gif ├── storybook-run.gif └── tests.gif ├── package.json ├── src └── Main.js ├── stories └── Main.js ├── storybook └── config.js ├── tests ├── helpers │ └── setup.js └── specs │ └── Main.spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["airbnb"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | build -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/README.md -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font-size: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /dist/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/dist/Main.js -------------------------------------------------------------------------------- /dist/Main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/dist/Main.min.js -------------------------------------------------------------------------------- /images/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/images/deploy.png -------------------------------------------------------------------------------- /images/storybook-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/images/storybook-example.gif -------------------------------------------------------------------------------- /images/storybook-run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/images/storybook-run.gif -------------------------------------------------------------------------------- /images/tests.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/images/tests.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/package.json -------------------------------------------------------------------------------- /src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/src/Main.js -------------------------------------------------------------------------------- /stories/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/stories/Main.js -------------------------------------------------------------------------------- /storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/storybook/config.js -------------------------------------------------------------------------------- /tests/helpers/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/tests/helpers/setup.js -------------------------------------------------------------------------------- /tests/specs/Main.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/tests/specs/Main.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyef/lyef-react-component/HEAD/yarn.lock --------------------------------------------------------------------------------