10 lines
165 B
JavaScript
Raw Normal View History

2021-04-14 18:56:29 -05:00
import styles from './text.module.css'
export default function Text ({ children }) {
return (
<pre className={styles.text}>
{children}
</pre>
)
}