1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 03:58:28 -04:00
jarv.is/components/Content.tsx
2021-12-30 08:18:41 -05:00

10 lines
201 B
TypeScript

import styles from "./Content.module.scss";
type Props = {
children: unknown;
};
export default function Content({ children }: Props) {
return <div className={styles.content}>{children}</div>;
}