File size: 284 Bytes
7bbd534
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { createContext, Dispatch, SetStateAction } from 'react';

interface SidebarContextType {
  toggleSidebar: boolean;
  setToggleSidebar: Dispatch<SetStateAction<boolean>>;
  sidebarWidth?: number;
}

export const SidebarContext = createContext<Partial<SidebarContextType>>({});