Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
319 B
TypeScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
import * as React from 'react';
const DashboardSidebarContext = React.createContext<{
onPageItemClick: (id: string, hasNestedNavigation: boolean) => void;
mini: boolean;
fullyExpanded: boolean;
fullyCollapsed: boolean;
hasDrawerTransitions: boolean;
} | null>(null);
export default DashboardSidebarContext;