ignite-jhipster
Version:
A React Native boilerplate for JHipster apps.
17 lines (14 loc) • 368 B
JavaScript
import React from 'react'
import { storiesOf } from '@storybook/react-native'
import RoundedButton from './rounded-button'
storiesOf('RoundedButton', module)
.add('Default', () => (
<RoundedButton
text='A simple rounded button'
/>
))
.add('Text as children', () => (
<RoundedButton>
Hello from the children!
</RoundedButton>
))