1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 12:36:20 -04:00
jarv.is/components/Content/Content.tsx

12 lines
243 B
TypeScript

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