Improve sidebar

This commit is contained in:
2025-11-04 21:51:20 +01:00
parent fdcd565431
commit 79b5a767f3
6 changed files with 68 additions and 274 deletions

View File

@@ -1,5 +1,11 @@
import * as React from "react";
const DashboardSidebarContext = React.createContext(null);
const DashboardSidebarContext = React.createContext<{
onPageItemClick: () => void;
mini: boolean;
fullyExpanded: boolean;
fullyCollapsed: boolean;
hasDrawerTransitions: boolean;
} | null>(null);
export default DashboardSidebarContext;