6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import { createContext } from "react"
|
|
|
|
import type { StepsStore } from "@/types/contexts/steps"
|
|
|
|
export const StepsContext = createContext<StepsStore | null>(null)
|