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