Update CLI snapshot for RN

This commit is contained in:
hypnos 2017-11-01 05:13:45 +03:00
parent 3af05719ad
commit 43450c53c0

View File

@ -1,5 +1,5 @@
/* eslint-disable global-require */
import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import { getStorybookUI, configure } from '@storybook/react-native';
@ -10,6 +10,16 @@ configure(() => {
// This assumes that storybook is running on the same host as your RN packager,
// to set manually use, e.g. host: 'localhost' option
const StorybookUI = getStorybookUI({ port: 7007, onDeviceUI: true });
AppRegistry.registerComponent('react_native', () => StorybookUI);
export default StorybookUI;
const StorybookUIRoot = getStorybookUI({ port: 7007, onDeviceUI: true });
// react-native hot module loader must take in a Class - https://github.com/facebook/react-native/issues/10991
// https://github.com/storybooks/storybook/issues/2081
// eslint-disable-next-line react/prefer-stateless-function
class StorybookUIHMRRoot extends Component {
render() {
return <StorybookUIRoot />;
}
}
AppRegistry.registerComponent('react_native', () => StorybookUIHMRRoot);
export default StorybookUIHMRRoot;