g6/stories/Tree/tree.stories.tsx

12 lines
343 B
TypeScript

// import { Button } from '@storybook/react/demo';
import { storiesOf } from '@storybook/react';
import React from 'react';
import FileSystem from './component/file-system'
export default { title: 'Tree' };
storiesOf('Tree', module)
.add('indented tree file system', () => ( // 一个 add 表示添加一个 story
<FileSystem />
))