g6/stories/View/view.stories.tsx
2020-08-17 18:50:55 +08:00

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 />);