UNPKG

375 BJavaScriptView Raw
1import React from 'react';
2import { Button, Modal } from '../../src';
3
4import { storiesOf, action, linkTo } from '@kadira/storybook';
5const addWithInfoOptions = { inline: true, propTables: false };
6storiesOf('按钮', module)
7 .addWithInfo(
8 '按钮样式',
9 () => (
10 <Button type="primary" onClick={action('clicked')}>点击我</Button>
11 ), addWithInfoOptions)
12