import React from 'react'; import { storiesOf } from '@storybook/react-native'; import BaseText, { BaseTextVariant } from './'; storiesOf('Component Library / BaseText', module) .addDecorator((getStory) => getStory()) .add('Small Display MD', () => ( {`I'm Text!`} )) .add('Small Body MD', () => ( {`I'm Text!`} ));