chore(SW-3395): Moved BookingConfirmationProvider to booking-flow package * chore(SW-3395): Moved BookingConfirmationProvider to booking-flow package Approved-by: Anton Gunnarsson
7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
import { createContext } from "react"
|
|
|
|
import type { BookingConfirmationStore } from "../types/contexts/booking-confirmation"
|
|
|
|
export const BookingConfirmationContext =
|
|
createContext<BookingConfirmationStore | null>(null)
|