import * as React from 'react'
import { storiesOf } from '@storybook/react'
import centered from '@storybook/addon-centered/react'
import { Mana } from '../Mana/Mana'
import { Stats } from './Stats'
storiesOf('Stats', module)
.addDecorator(centered)
.add('Single Result', () => (
<>
1,235,345
>
))
.add('Poll Results', () => (
<>
MANA
1,235,345
20
Yes
1 week
>
))