├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .storybook ├── addons.js ├── components │ └── GlobalStyleDecorator.js ├── config.js ├── constants.ts └── webpack.config.js ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── assets │ ├── gatsby-astronaut.png │ └── gatsby-icon.png ├── components │ ├── 0-Documentation │ │ └── documentation.story.tsx │ ├── Button │ │ ├── Button.story.tsx │ │ ├── index.tsx │ │ └── styled.ts │ ├── Container │ │ ├── Container.story.tsx │ │ └── index.tsx │ ├── Header │ │ ├── Header.story.tsx │ │ ├── index.tsx │ │ └── styled.ts │ ├── Layout │ │ └── index.tsx │ └── Reset │ │ ├── Reset.story.tsx │ │ └── index.tsx ├── constants.ts ├── declarations.d.ts └── pages │ ├── 404.tsx │ ├── image.tsx │ ├── index.tsx │ └── page-2.tsx ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .git 3 | node_modules 4 | public 5 | build 6 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .git 3 | node_modules 4 | public 5 | build 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/components/GlobalStyleDecorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.storybook/components/GlobalStyleDecorator.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.storybook/constants.ts -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/assets/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/assets/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/assets/gatsby-icon.png -------------------------------------------------------------------------------- /src/components/0-Documentation/documentation.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/0-Documentation/documentation.story.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Button/Button.story.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Button/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Button/styled.ts -------------------------------------------------------------------------------- /src/components/Container/Container.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Container/Container.story.tsx -------------------------------------------------------------------------------- /src/components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Container/index.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Header/Header.story.tsx -------------------------------------------------------------------------------- /src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Header/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Header/styled.ts -------------------------------------------------------------------------------- /src/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/components/Reset/Reset.story.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Reset/Reset.story.tsx -------------------------------------------------------------------------------- /src/components/Reset/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/components/Reset/index.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/pages/image.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/page-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/src/pages/page-2.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertoMSousa/gatsby-typescript-storybook-starter/HEAD/yarn.lock --------------------------------------------------------------------------------