mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 12:49:04 +08:00
12 lines
405 B
TypeScript
12 lines
405 B
TypeScript
// import { Button } from '@storybook/react/demo';
|
|
import { storiesOf } from '@storybook/react';
|
|
import React from 'react';
|
|
import FileSystem from './component/file-system';
|
|
import LargeDataTree from './component/large-data';
|
|
|
|
export default { title: 'Tree' };
|
|
|
|
storiesOf('Tree', module)
|
|
.add('indented tree file system', () => <FileSystem />)
|
|
.add('large data custom tree', () => <LargeDataTree />);
|