mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
|
import React from 'react'
|
||
|
import styles from './Row.module.scss'
|
||
|
|
||
|
const Row = ({ children }: { children: any }) => (
|
||
|
<div className={styles.row}>{children}</div>
|
||
|
)
|
||
|
|
||
|
export default Row
|