added interiors

This commit is contained in:
2025-07-25 11:32:07 +05:00
parent dd998b8189
commit 709fda6ae2
18 changed files with 21 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
interface SliderWithTabsProps {
tabs: string[];
children: React.ReactNode;
}
function SliderWithTabs({ tabs, children }: SliderWithTabsProps) {
return <div></div>;
}
export default SliderWithTabs;