ignite-router-flux
Version:
Infinite Red's hot boilerplate for React Native.
18 lines (15 loc) • 353 B
JavaScript
import React from 'react'
import { storiesOf } from '@storybook/react-native'
import FullButton from './FullButton'
storiesOf('FullButton')
.add('Default', () => (
<FullButton
text='A simple button'
/>
))
.add('Custom Style', () => (
<FullButton
text='Style Me Up!'
styles={{ backgroundColor: 'blue' }}
/>
))