mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 17:30:28 -04:00
* scss isn't worth the technical/mental overhead anymore * try to translate my old Hugo pygments themes * update lockfile * consolidate .hljs classes
10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
import styles from "./Content.module.css";
|
|
|
|
type Props = {
|
|
children: unknown;
|
|
};
|
|
|
|
const Content = ({ children }: Props) => <div className={styles.content}>{children}</div>;
|
|
|
|
export default Content;
|