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