"use client"; import { motion } from "framer-motion"; interface WidgetContainerProps { title: string; onRemove: () => void; children: React.ReactNode; isDragging?: boolean; } export function WidgetContainer({ title, onRemove, children, isDragging }: WidgetContainerProps) { return ( {/* Header */}
{title}
{/* Body */}
{children}
); }