10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
|
import styles from './text.module.css'
|
||
|
|
||
|
export default function Text ({ children }) {
|
||
|
return (
|
||
|
<pre className={styles.text}>
|
||
|
{children}
|
||
|
</pre>
|
||
|
)
|
||
|
}
|