Files
irth-new-client-120/src/components/SliderWithTabs.tsx
T
2025-07-25 11:32:07 +05:00

11 lines
205 B
TypeScript

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