mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 12:49:04 +08:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
// import { Button } from '@storybook/react/demo';
|
|
import { storiesOf } from '@storybook/react';
|
|
import React from 'react';
|
|
import MoveTo from './component/moveTo';
|
|
|
|
export default { title: 'Translate' };
|
|
|
|
storiesOf('Translate', module)
|
|
.add('MoveTo', () => (
|
|
<MoveTo />
|
|
)) |