1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
market/src/components/atoms/Lists.stories.tsx
2020-05-07 09:03:30 +03:00

23 lines
423 B
TypeScript

import React from 'react'
import { ListItem } from './Lists'
export default {
title: 'Atoms/Lists'
}
export const Unordered = () => (
<ul>
<ListItem>Hello You</ListItem>
<ListItem>Hello You</ListItem>
<ListItem>Hello You</ListItem>
</ul>
)
export const Ordered = () => (
<ol>
<ListItem ol>Hello You</ListItem>
<ListItem ol>Hello You</ListItem>
<ListItem ol>Hello You</ListItem>
</ol>
)