1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-30 22:01:44 +02:00
market/src/components/atoms/Box.stories.tsx
2020-05-07 09:03:30 +03:00

11 lines
301 B
TypeScript

import React from 'react'
import styles from './Box.module.css'
import { Center } from '../../../.storybook/helpers'
export default {
title: 'Atoms/Box',
decorators: [(storyFn: any) => <Center>{storyFn()}</Center>]
}
export const Normal = () => <div className={styles.box}>Hello Fancy Box</div>