turkmentv_front/context/MaterialsContext.ts

10 lines
236 B
TypeScript
Raw Normal View History

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