Test.story.tsx 323 B

1234567891011
  1. import React from 'react';
  2. import { storiesOf } from '@storybook/react';
  3. import { DeleteButton } from '@grafana/ui';
  4. storiesOf('Test story', module)
  5. .addDecorator((story) => (
  6. <div style={{padding: '20px'}}>{story()}</div>
  7. ))
  8. .add('with text', () => {
  9. return <DeleteButton onConfirm={() => { }}></DeleteButton>;
  10. });