mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 04:38:55 +08:00
12 lines
349 B
TypeScript
12 lines
349 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 />
|
|
));
|