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