// app/components/chat/ChatSkeleton.tsx export function ChatSkeleton() { return (
{/* Placeholder for a few messages */} {[1, 2, 3].map((i) => (
))} {/* Placeholder for chat input box */}
); }