import React from 'react'; import { Badge, ProBadge } from '@meetfranz/ui'; import { storiesOf } from '../stores/stories'; storiesOf('Badge') .add('Basic', () => ( <> New )) .add('Styles', () => ( <> Primary secondary success warning danger inverted )) .add('Pro Badge', () => ( <> )) .add('Pro Badge inverted', () => ( <> ));