UNPKG

ignite-jhipster

Version:

A React Native boilerplate for JHipster apps.

16 lines (13 loc) 399 B
import React from 'react' import { View } from 'react-native' import { storiesOf } from '@storybook/react-native' import DrawerButton from '../../../app/navigation/drawer/drawer-button' storiesOf('DrawerButton', module) .add('Default', () => ( <View style={{ backgroundColor: 'black' }}> <DrawerButton text='Drawer Button' onPress={() => { }} /> </View> ))