mirror of
https://gitee.com/antv/g6.git
synced 2024-12-01 11:18:30 +08:00
12 lines
343 B
TypeScript
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 />
|
|
)) |