mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 19:58:46 +08:00
11 lines
326 B
TypeScript
11 lines
326 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 />);
|