extract components from website

This commit is contained in:
2025-12-21 13:55:31 +01:00
parent 13d8563feb
commit b52474d792
65 changed files with 3234 additions and 1361 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
interface TabContentProps {
activeTab: string;
children: React.ReactNode;
className?: string;
}
export default function TabContent({ activeTab, children, className = '' }: TabContentProps) {
return (
<div className={className}>
{children}
</div>
);
}