import * as React from 'react';
import { SidebarInset } from '@/components/ui/sidebar';
type Props = React.ComponentProps<'main'> & {
variant?: 'header' | 'sidebar';
};
export function AppContent({ variant = 'header', children, ...props }: Props) {
if (variant === 'sidebar') {
return {children};
}
return (
{children}
);
}