import * as React from 'react'
import { storiesOf } from '@storybook/react'
import centered from '@storybook/addon-centered/react'
import { Address } from '../Address/Address'
import { Box } from './Box'
import { Blockie } from '../Blockie/Blockie'
const address = '0x0F5D2fB29fb7d3CFeE444a200298f468908cC942'
storiesOf('Box', module)
.addDecorator(centered)
.add('Without header', () => (
))
.add('With header', () => (
))
.add('Without border', () => (
))