import { createContext } from 'react';

export type TDropdownContext = {
  theme: 'dark' | 'light';
  setShowMenu: React.Dispatch<React.SetStateAction<boolean>>;
};

export const DropdownContext = createContext<TDropdownContext>({
  theme: 'light',
  setShowMenu: () => {},
});
