11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import * as React from "react";
|
|
|
|
const DashboardSidebarContext = React.createContext<{
|
|
onPageItemClick: () => void;
|
|
mini: boolean;
|
|
fullyExpanded: boolean;
|
|
hasDrawerTransitions: boolean;
|
|
} | null>(null);
|
|
|
|
export default DashboardSidebarContext;
|