import type { CSSProperties, ReactNode } from 'react' import { cn } from '@/lib/utils' import { useDragRegion } from '../hooks/useDragRegion' interface OnboardingShellProps { children: ReactNode className?: string contentClassName?: string contentStyle?: CSSProperties style?: CSSProperties testId?: string } export function OnboardingShell({ children, className, contentClassName, contentStyle, style, testId, }: OnboardingShellProps) { const { onMouseDown } = useDragRegion() return (
{children}
) }