mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 21:28:26 -04:00
10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import styles from "./Content.module.scss";
|
|
|
|
type Props = {
|
|
children: unknown;
|
|
};
|
|
|
|
export default function Content({ children }: Props) {
|
|
return <div className={styles.content}>{children}</div>;
|
|
}
|