mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 12:49:04 +08:00
14 lines
344 B
TypeScript
14 lines
344 B
TypeScript
import { storiesOf } from '@storybook/react';
|
|
import React from 'react';
|
|
import MoveTo from './component/moveTo';
|
|
import AnimateFitView from './component/animate-fitview';
|
|
|
|
export default { title: 'View' };
|
|
|
|
storiesOf('View', module)
|
|
.add('MoveTo', () => (
|
|
<MoveTo />
|
|
))
|
|
.add('Animate and FitView', () => (
|
|
<AnimateFitView />
|
|
)) |