{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "app-content",
"dependencies": [],
"registryDependencies": [
"sidebar"
],
"files": [
{
"path": "registry/new-york-v4/components/app-content.tsx",
"content": "import * as React from \"react\";\nimport { SidebarInset } from \"@/components/ui/sidebar\";\nimport type { AppVariant } from \"@/lib/types\";\n\ntype Props = React.ComponentProps<\"main\"> & {\n variant?: AppVariant;\n};\n\nexport function AppContent({ variant = \"sidebar\", children, ...props }: Props) {\n if (variant === \"sidebar\") {\n return {children};\n }\n\n return (\n \n {children}\n \n );\n}\n",
"type": "registry:component"
}
],
"type": "registry:component"
}