mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 10:18:27 -04:00
11 lines
242 B
TypeScript
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;
|