It's that time again! Storybook 5.1 is stable and 5.2 is coming down the pipe!
- ✅
5.2.0-alpha.0
: 2019-04-29 - ✅
5.2.0-beta.0
: 2019-07-15 - ⏱
5.2.0-rc.0
: 2019-07-29 (est) - 🏁
5.2.0
: 2019-08-05 (est)
It's that time again! Storybook 5.1 is stable and 5.2 is coming down the pipe!
5.2.0-alpha.0
: 2019-04-295.2.0-beta.0
: 2019-07-155.2.0-rc.0
: 2019-07-29 (est)5.2.0
: 2019-08-05 (est)export default { title: 'Counter' } | |
export const enabled = () => <Counter text="Enabled" />; | |
export const disabled = () => <Counter disabled text="Disabled" />; |
import { Meta, Story, Props } from '@storybook/addon-docs/blocks'; | |
import { Badge } from './Badge'; | |
<Meta title="Demo/Badge" component={Badge} /> | |
# Badge | |
With `MDX` we write longform markdown documentation for our `Badge` component and embed Doc Blocks inline. | |
<Props of={Badge} /> |
# Storybook Monthly 2019-09-02 | |
## Introduction - 5m | |
- Welcome | |
- Self-introductions | |
## 5.2 Release - 10m | |
- 7/15 beta 🎉, 8/30 rc, 9/10 release (2.5 mo cycle) |
This is a quick-and-dirty walkthrough to set up a fresh project with Storybook Docs, Create React App, and TypeScript. If you're looking for a tutorial, please see Design Systems for Developers, which goes into much more depth but does not use Typescript.
The purpose of this walkthrough is a streamlined Typescript / Docs setup that works out of the box, since there are countless permutations and variables which can influence docs features, such as source code display, docgen, and props tables.
npx create-react-app cra-ts --template typescript
Nov 11 beta, Dec 9 rc, Jan 7 final (3 mo cycle)