Storybook
View and develop rich UI components interactively with Storybook.
To view and develop UI components with Storybook:
state = {
fontLoaded: false,
storybook: true //not `false`
}yarn storybookTo view the app in the normal mode (i.e without Storybook):
state = {
fontLoaded: false,
storybook: false //not `true`
}Last updated