6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
import { createContext } from "react"
|
|
|
|
import type { MyStayStore } from "@/types/contexts/my-stay"
|
|
|
|
export const MyStayContext = createContext<MyStayStore | null>(null)
|