mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-01-11 03:02:56 -05: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;
|