ignite-router-flux
Version:
Infinite Red's hot boilerplate for React Native.
16 lines (13 loc) • 361 B
JavaScript
import React from 'react'
import { View } from 'react-native'
import { storiesOf } from '@storybook/react-native'
import DrawerButton from './DrawerButton'
storiesOf('DrawerButton')
.add('Default', () => (
<View style={{ backgroundColor: 'black' }}>
<DrawerButton
text='Drawer Button'
onPress={() => { }}
/>
</View>
))