Skip to content

Commit

Permalink
chore(alert): add component to storybook (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephsalazar authored and gmoura committed Jun 7, 2019
1 parent c7ef939 commit c19d40b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/components/Alerts/index.stories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
import { storiesOf } from '@storybook/react';

import Alert from './';

storiesOf('Alert', module)
.add('alert', () => (
<>
<Alert text="Ejemplo de uso de una alerta" />
</>
));

0 comments on commit c19d40b

Please sign in to comment.