1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-29 00:57:50 +02:00
market/src/components/atoms/Input/Row.tsx
2020-05-19 11:57:49 +03:00

9 lines
185 B
TypeScript

import React from 'react'
import styles from './Row.module.css'
const Row = ({ children }: { children: any }) => (
<div className={styles.row}>{children}</div>
)
export default Row