1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 17:30:28 -04:00
jarv.is/components/Content.tsx

11 lines
242 B
TypeScript

import styles from "./Content.module.css";
import type { ReactNode } from "react";
type Props = {
children: ReactNode;
};
const Content = ({ children }: Props) => <div className={styles.content}>{children}</div>;
export default Content;