@exemplar/native-storybook
v1.0.1
Published
Run React Native storybook through exemplar for a React Component.
Downloads
5
Readme
@exemplar/native-storybook
Run React Native storybook through exemplar for a React Component.
Install
Add @exemplar/native-storybook
to your dependencies.
npm i --save-dev @exemplar/native-storybook
Add ios and android run scripts to your package.json
:
{
"scripts": {
"storybook:native:ios": "exemplar-native --platform ios",
"storybook:native:android": "exemplar-native --platform android"
}
}
CLI flags
The exemplar-native
CLI supports the following flags.
--platform
: define the platform to use, defaults toios
.--entry
: define a custom path for the storybook examples, defaults to[cwd]/examples/native
.
Setting up stories
Before you can run storybook you will need create some @exemplar
style
examples: see the example structure in a nutshell.