mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Update CLI snapshot for RN
This commit is contained in:
parent
3af05719ad
commit
43450c53c0
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user