mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 23:02:00 +08:00
17 lines
482 B
JavaScript
17 lines
482 B
JavaScript
import React from 'react';
|
|
|
|
import Root from './containers/root';
|
|
import Nav from './containers/nav';
|
|
|
|
import Preview from './containers/preview_panel';
|
|
import Panel from './containers/addon_panel';
|
|
|
|
// import ShortcutsHelp from './containers/shortcuts_help';
|
|
// import SearchBox from './containers/search_box';
|
|
|
|
// shortcutsHelp={() => <ShortcutsHelp />}
|
|
// searchBox={() => <SearchBox />}
|
|
const App = () => <Root Preview={Preview} Nav={Nav} Panel={Panel} />;
|
|
|
|
export default App;
|