mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 12:49:04 +08:00
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
// import { Button } from '@storybook/react/demo';
|
|
import { storiesOf } from '@storybook/react';
|
|
import React from 'react';
|
|
import NodeLabelRotate from './component/node-label-rotate'
|
|
|
|
export default { title: 'Label' };
|
|
|
|
|
|
storiesOf('Label', module)
|
|
.add('node label rotate', () => ( // 一个 add 表示添加一个 story
|
|
<NodeLabelRotate />
|
|
)) |