mirror of
https://github.com/zhigang1992/storybook-video-bug.git
synced 2026-01-12 16:43:10 +08:00
12 lines
280 B
JavaScript
12 lines
280 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './App';
|
|
import Storybook from './storybook';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => Storybook);
|
|
// AppRegistry.registerComponent(appName, () => App);
|