UNPKG

ignite-jhipster

Version:

A React Native boilerplate for JHipster apps.

24 lines (21 loc) 467 B
import React from 'react' import { storiesOf } from '@storybook/react-native' import AlertMessage from './alert-message' storiesOf('AlertMessage', module) .add('Default', () => ( <AlertMessage title='ALERT ALERT' /> )) .add('Hidden', () => ( <AlertMessage title='ALERT ALERT' show={false} /> )) .add('Custom Style', () => ( <AlertMessage title='ALERT ALERT' style={{ backgroundColor: 'red' }} /> ))