Tested: 6th March 2019
Download rom here: https://brew.sh/ `
brew install node
brew install watchman
brew install yarnnpm install -g react-native-clireact-native init AwesomeProject
cd AwesomeProjectrm package-lock.json
rm -rf node_modules/git init
git add -A
git commit -m 'first commit'yarn add @babel/core
yarn add babel-runtime
yarn add webpack
yarn add react-domyarn add --dev @storybook/react-nativesb init -fBe sure to choose v4.1.13 from the list
"@storybook/react": "^4.1.13",
"@storybook/addon-actions": "^4.1.13",
"@storybook/addon-links": "^^4.1.13",
"@storybook/addons": "^4.1.13",yarn add prop-types redux react-redux react-native-vector-iconsreact-native linkyarnreact-native run-iosexport default from "./storybook";yarn storybook
I believe the command to initialise Storybook should be
sb init -f --type react_nativein this case.Other than that, very helpful guide. Thank you!