mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-04 02:32:57 +00:00
12 lines
335 B
TypeScript
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;
|