This template extends the Create React App TypeScript template with Storybook.
To use this template, add --template typescript-storybook
when creating a new app.
For example:
npx create-react-app my-app --template typescript-storybook
# or
yarn create react-app my-app --template typescript-storybook
- App and Component directory structure is the same as a standard create-react-app install
- Stories are written in the
src/stories
directory (this can be changed in.storybook/main.js
)
Inspired by this Gist by one of the Storybook maintainers to quickly get Storybook Docs, Create React App, and TypeScript up and running. Basically, this template installs all those packages in a simple one-step process.
For more information, please refer to:
- Getting Started – How to create a new app.
- User Guide – How to develop apps bootstrapped with Create React App.