10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
![]() |
import { createContext, Dispatch, SetStateAction } from 'react'
|
||
|
|
||
|
interface ShellContextProps {
|
||
|
setTitle: Dispatch<SetStateAction<string>>
|
||
|
}
|
||
|
|
||
|
export const ShellContext = createContext<ShellContextProps>({
|
||
|
setTitle: () => {},
|
||
|
})
|