1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
2020-05-19 11:57:49 +03:00

9 lines
200 B
TypeScript

import React from 'react'
import styles from './Help.module.css'
const FormHelp = ({ children }: { children: string }) => (
<div className={styles.help}>{children}</div>
)
export default FormHelp