import type { Dispatch, SetStateAction } from "react"; import { createContext } from "react"; export const TitleContext = createContext< [string, Dispatch>] >(["DS-Next", () => 0]);