Files
MyClub/frontend/src/components/Sidebar.tsx
T
Tomáš Dvořák 12cba639b9 upload
2025-10-16 13:32:05 +02:00

12 lines
335 B
TypeScript

// Deprecated: use `components/admin/AdminSidebar` via `layouts/AdminLayout`.
// This thin wrapper keeps backward compatibility by rendering the new AdminSidebar.
import AdminSidebar from './admin/AdminSidebar';
const Sidebar = () => {
return (
<AdminSidebar isOpen={true} onClose={() => {}} />
);
};
export default Sidebar;