Files
reacord/packages/docs/app/components/side-nav.tsx
2021-12-30 18:05:01 -06:00

17 lines
303 B
TypeScript

import type { ReactNode } from "react"
export function SideNav({
heading,
children,
}: {
heading: ReactNode
children: ReactNode
}) {
return (
<nav>
<h2 className="text-2xl">{heading}</h2>
<div className="mt-3 flex flex-col gap-2 items-start">{children}</div>
</nav>
)
}