Open oktalk opened 5 years ago
I had same issue. I've solved by updating babel-core to 7.0.0-bridge.0 and use storybookSwitcher function for relaying storybook to UI.
In App.js file :
export default DebugConfig.useReactotron
? console.tron.storybookSwitcher(StorybookUI)(App)
: App
Using storybookSwitcher function is not directly about your issue but anyway. This is how make storybook up and running after fresh install of Ignite Andross.
I'm running into an issue with Storybook. Starting with a fresh install, running
yarn storybook
the build fails (truncated error log below). I was able to move on by following this thread: https://github.com/storybooks/storybook/issues/4179Updating my
package.json
to"storybook": "storybook start -p 7007 --skip-packager | react-native start --projectRoot storybook"
is working for now.