/** * A side bar component with Overlay that works without JavaScript. * @example * ```ts * * ``` */ export function Aside({ children, heading, id = 'aside', }: { children?: React.ReactNode; heading: React.ReactNode; id?: string; }) { return (