import React from 'react'; import { StyleSheet, View } from 'react-native'; import { storiesOf } from '@storybook/react-native'; import { Radio } from '@aws-amplify/ui-react-native/dist/primitives'; storiesOf('Radio', module) .add('default', () => ) .add('label', () => ( <> )) .add('labelStyle', () => ( )) .add('selected', () => ( <> )) .add('disabled', () => ( <> )) .add('size', () => ( )) .add('styles', () => ( )); const styles = StyleSheet.create({ container: { alignItems: 'flex-start', }, redText: { color: 'red', }, greenButton: { backgroundColor: 'green', }, blueBorder: { borderColor: 'blue', borderWidth: 2, }, });