stacker.news/components/text.js

10 lines
165 B
JavaScript
Raw Normal View History

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