mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
9 lines
200 B
TypeScript
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
|