├── .gitignore ├── .storybook ├── main.js ├── next-preset.js └── preview.js ├── README.md ├── babel.config.json ├── components ├── Button.stories.tsx ├── Button.tsx └── __test__ │ ├── Button.snapshot.test.tsx │ ├── __snapshots__ │ └── Button.snapshot.test.tsx.snap │ └── index.test.tsx ├── config └── setup.js ├── jest.config.js ├── next-env.d.ts ├── package.json ├── pages ├── api │ └── hello.js └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── styles └── global.scss ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/next-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/.storybook/next-preset.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/babel.config.json -------------------------------------------------------------------------------- /components/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/components/Button.stories.tsx -------------------------------------------------------------------------------- /components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/components/Button.tsx -------------------------------------------------------------------------------- /components/__test__/Button.snapshot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/components/__test__/Button.snapshot.test.tsx -------------------------------------------------------------------------------- /components/__test__/__snapshots__/Button.snapshot.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/components/__test__/__snapshots__/Button.snapshot.test.tsx.snap -------------------------------------------------------------------------------- /components/__test__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/components/__test__/index.test.tsx -------------------------------------------------------------------------------- /config/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/config/setup.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/jest.config.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/styles/global.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trinwin/storybook-next-ts-template/HEAD/yarn.lock --------------------------------------------------------------------------------