tj-sga-website-react/src/components/ParagraphHeader.tsx
2021-01-05 22:58:56 -05:00

10 lines
183 B
TypeScript

export default function ParagraphHeader({
children,
}: {
children: React.ReactNode;
}) {
return (
<h2 style={{ marginTop: '4rem', marginBottom: '1.5rem' }}>{children}</h2>
);
}