mirror of
https://github.com/tjsga/tj-sga-website-react.git
synced 2025-04-21 12:00:17 -04:00
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
export default function ParagraphHeader({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<h2 style={{ marginTop: '4rem', marginBottom: '1.5rem' }}>{children}</h2>
|
|
);
|
|
}
|