mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 12:36:20 -04:00
12 lines
233 B
TypeScript
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;
|