import { storiesOf } from '@kadira/storybook';
import CharacterCounter from '../../app/assets/javascripts/components/features/compose/components/character_counter';
storiesOf('CharacterCounter', module)
.add('no text', () => {
const text = '';
return ;
})
.add('a few strings text', () => {
const text = '0123456789';
return ;
})
.add('the same text', () => {
const text = '01234567890123456789';
return ;
})
.add('over text', () => {
const text = '01234567890123456789012345678901234567890123456789';
return ;
});