import { PropsWithChildren } from 'react'; import { useWidgetContext } from './Widget'; interface Props { className?: string; } export function WidgetTaskbar({ children, className, }: PropsWithChildren) { useWidgetContext(); return (
{children}
); }