turkmentv_front/context/GlobalContext.ts

8 lines
217 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
"use client";
import { IGlobalContext } from "@/typings/context.type";
import { createContext } from "react";
const GlobalContext = createContext<IGlobalContext>({} as IGlobalContext);
export default GlobalContext;