mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
24 lines
558 B
JavaScript
24 lines
558 B
JavaScript
import { AppRegistry } from 'react-native';
|
|
import { getStorybookUI, configure } from '@storybook/react-native';
|
|
import { setOptions } from '@storybook/addon-options';
|
|
|
|
// import stories
|
|
configure(() => {
|
|
// eslint-disable-next-line global-require
|
|
require('./stories');
|
|
}, module);
|
|
|
|
const StorybookUI = getStorybookUI({ port: 7007, host: 'localhost' });
|
|
|
|
setTimeout(
|
|
() =>
|
|
setOptions({
|
|
name: 'React Native Vanilla',
|
|
}),
|
|
100
|
|
);
|
|
|
|
AppRegistry.registerComponent('ReactNativeVanilla', () => StorybookUI);
|
|
|
|
export { StorybookUI as default };
|