Files
ds-pages/app/component/Header/Header.tsx
2025-08-08 17:14:09 +08:00

7 lines
208 B
TypeScript

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