├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .storybook ├── config.js └── webpack.config.js ├── .stylelintrc ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── src ├── App.js ├── actions │ └── count.js ├── assets │ ├── fonts │ │ ├── roboto-bold-webfont.eot │ │ ├── roboto-bold-webfont.ttf │ │ ├── roboto-bold-webfont.woff │ │ └── roboto-bold-webfont.woff2 │ ├── img │ │ └── logo.svg │ └── styles │ │ ├── _base.scss │ │ ├── _global.scss │ │ ├── _normalize.scss │ │ └── app.scss ├── components │ ├── Button │ │ ├── Button.js │ │ ├── Button.scss │ │ ├── Button.stories.js │ │ ├── Button.test.js │ │ ├── __snapshots__ │ │ │ └── Button.test.js.snap │ │ └── index.js │ └── Header │ │ ├── Header.js │ │ ├── Header.scss │ │ ├── Header.stories.js │ │ ├── Header.test.js │ │ ├── __snapshots__ │ │ └── Header.test.js.snap │ │ └── index.js ├── config │ ├── routes.js │ └── store.js ├── containers │ ├── Home │ │ ├── Home.js │ │ ├── Home.scss │ │ └── index.js │ └── Subpage │ │ ├── Subpage.js │ │ └── index.js ├── index.html ├── index.js ├── reducers │ └── count.js └── utils │ ├── constants.js │ └── helpers.js ├── test-setup.js ├── webpack.config.js ├── webpack └── config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/App.js -------------------------------------------------------------------------------- /src/actions/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/actions/count.js -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/fonts/roboto-bold-webfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/fonts/roboto-bold-webfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/fonts/roboto-bold-webfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/roboto-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/fonts/roboto-bold-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/img/logo.svg -------------------------------------------------------------------------------- /src/assets/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/styles/_base.scss -------------------------------------------------------------------------------- /src/assets/styles/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/styles/_global.scss -------------------------------------------------------------------------------- /src/assets/styles/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/styles/_normalize.scss -------------------------------------------------------------------------------- /src/assets/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/assets/styles/app.scss -------------------------------------------------------------------------------- /src/components/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Button/Button.js -------------------------------------------------------------------------------- /src/components/Button/Button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Button/Button.scss -------------------------------------------------------------------------------- /src/components/Button/Button.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Button/Button.stories.js -------------------------------------------------------------------------------- /src/components/Button/Button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Button/Button.test.js -------------------------------------------------------------------------------- /src/components/Button/__snapshots__/Button.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Button/__snapshots__/Button.test.js.snap -------------------------------------------------------------------------------- /src/components/Button/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Button'; 2 | -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Header/Header.scss -------------------------------------------------------------------------------- /src/components/Header/Header.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Header/Header.stories.js -------------------------------------------------------------------------------- /src/components/Header/Header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Header/Header.test.js -------------------------------------------------------------------------------- /src/components/Header/__snapshots__/Header.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/components/Header/__snapshots__/Header.test.js.snap -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Header'; 2 | -------------------------------------------------------------------------------- /src/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/config/routes.js -------------------------------------------------------------------------------- /src/config/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/config/store.js -------------------------------------------------------------------------------- /src/containers/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/containers/Home/Home.js -------------------------------------------------------------------------------- /src/containers/Home/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/containers/Home/Home.scss -------------------------------------------------------------------------------- /src/containers/Home/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Home'; 2 | -------------------------------------------------------------------------------- /src/containers/Subpage/Subpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/containers/Subpage/Subpage.js -------------------------------------------------------------------------------- /src/containers/Subpage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Subpage'; 2 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/src/reducers/count.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/test-setup.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/webpack/config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilkeryilmaz/bilyeli/HEAD/yarn.lock --------------------------------------------------------------------------------