Website/components/article.js

12 lines
264 B
JavaScript
Raw Normal View History

2022-02-15 17:08:29 +00:00
import styles from '../styles/Article.module.css';
export default function Article(props) {
return (
<>
2022-02-15 22:47:41 +00:00
<title>TheRed.SH / Article</title>
2022-02-15 17:08:29 +00:00
<div className={styles.Article}>
{props.children}
</div>
</>
)
}