6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
import { createContext } from "react"
|
|
|
|
import type { DetailsStore } from "@/types/contexts/enter-details"
|
|
|
|
export const DetailsContext = createContext<DetailsStore | null>(null)
|