"use client"; import type { ComponentProps } from "react"; import { AnimatedSidebarProvider } from "@/components/motion/animated-sidebar"; import { cn } from "@/lib/utils"; export type ChatAppProps = ComponentProps & { sidebarWidth?: string; }; export function ChatApp({ children, className, sidebarWidth = "17rem", style, ...props }: ChatAppProps) { return ( {children} ); }