turkmentv_front/context/StepsContext.ts

8 lines
212 B
TypeScript
Raw Permalink Normal View History

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