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
2022-01-22 10:06:24 -05:00

12 lines
233 B
TypeScript

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