interface SliderWithTabsProps { tabs: string[]; children: React.ReactNode; } function SliderWithTabs({ tabs, children }: SliderWithTabsProps) { return
; } export default SliderWithTabs;