import type { HtmlProps } from '@/types';
type WithSidebarProps = HtmlProps;
export function WithSidebar({ children }: WithSidebarProps) {
return (
{children}
);
}
type SidebarProps = HtmlProps;
export function Sidebar({ children }: SidebarProps) {
return {children}
;
}