import { storiesOf } from '@storybook/react'; import TextEllipsis from '.'; storiesOf('TextEllipsis', module) .add('Pure', () => ( )) .add('Normal Text', () => ( {'this is test'} )) .add('Inverted', () => ( {'this is test'} )) .add('Bigger Text', () => (
{'this is the biggest text in the application to test the popup content. this is the biggest text in the application to test the popup content.'}
))