mirror of
https://github.com/tjsga/tj-sga-website-react.git
synced 2025-04-19 03:00:16 -04:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
export default function PrimaryHeader({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <h1 className='my-4'>{children}</h1>;
|
|
}
|