/** * 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 ( ); } function CloseAside() { return ( /* eslint-disable-next-line jsx-a11y/anchor-is-valid */ history.go(-1)}> × ); }