import * as React from 'react' import { storiesOf } from '@storybook/react' import centered from '@storybook/addon-centered/react' import { Profile } from './Profile' import { Mana } from '../Mana/Mana' import { avatar } from '../../data/avatar' storiesOf('Profile', module) .addDecorator(centered) .add('No avatar', () => ( <> )) .add('Avatar', () => ( <> )) .add('Image only', () => ( <> )) .add('Text only', () => ( <> )) .add('Inline', () => ( <> You sent 1,000 to{' '} )) .add('Decentraland', () => ( <> You sent 1,000 to{' '} )) .add('Sizes', () => ( <> ))