ignite-router-flux
Version:
Infinite Red's hot boilerplate for React Native.
24 lines (21 loc) • 458 B
JavaScript
import React from 'react'
import { storiesOf } from '@storybook/react-native'
import AlertMessage from './AlertMessage'
storiesOf('AlertMessage')
.add('Default', () => (
<AlertMessage
title='ALERT ALERT'
/>
))
.add('Hidden', () => (
<AlertMessage
title='ALERT ALERT'
show={false}
/>
))
.add('Custom Style', () => (
<AlertMessage
title='ALERT ALERT'
style={{ backgroundColor: 'red' }}
/>
))