so does this work?

This commit is contained in:
Violet Caulfield
2024-11-23 12:05:28 -06:00
parent d996032508
commit a2ee2be780

View File

@@ -14,6 +14,6 @@ export function Label(props: LabelProps): React.JSX.Element {
export function Heading({ children }: { children: string }): React.JSX.Element {
return (
<H1 marginVertical={30} fontWeight={800}>{ children }</H1>
<H1 marginVertical={30} fontWeight={900}>{ children }</H1>
)
}