remix-demo
react router (remix) demo
git clone https://9o.is/git/remix-demo.git
SubHeading.tsx
(214B)
1 import type { ReactNode } from "react";
2
3 type Props = { children: ReactNode };
4
5 export default function SubHeading({ children }: Props) {
6 return <h2 className="my-6 text-2xl font-bold md:mt-0">{children}</h2>;
7 }