import { createContext, Dispatch, SetStateAction } from 'react' interface ShellContextProps { setTitle: Dispatch> } export const ShellContext = createContext({ setTitle: () => {}, })