remix-demo
react router (remix) demo
git clone https://9o.is/git/remix-demo.git
Heading.tsx
(140B)
1 export default function Heading({ children }: { children: any }) {
2 return <h1 className="mb-6 text-4xl font-extrabold">{children}</h1>;
3 }