chitchatter/src/ShellContext.ts

10 lines
231 B
TypeScript
Raw Normal View History

2022-08-28 21:25:49 -05:00
import { createContext, Dispatch, SetStateAction } from 'react'
interface ShellContextProps {
setTitle: Dispatch<SetStateAction<string>>
}
export const ShellContext = createContext<ShellContextProps>({
setTitle: () => {},
})