remove unnecessary code

This commit is contained in:
Michael Fatemi 2021-10-09 23:20:26 -04:00
parent 90c49e2c02
commit 2dda93e0b9

View File

@ -1,15 +1,9 @@
// from node_modules/react/index.d.ts: global -> JSX -> IntrinsicElements
type h1Props = React.DetailedHTMLProps<
React.HTMLAttributes<HTMLHeadingElement>,
HTMLHeadingElement
>;
export default function PrimaryHeader({
children,
...props
}: {
children: React.ReactNode;
} & h1Props) {
} & JSX.IntrinsicElements['h1']) {
return (
<h1 className='my-4' {...props}>
{children}