@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
15 lines (11 loc) • 341 B
text/typescript
import React from "react";
import { Settings } from "./types";
interface ProductSettingsContextProps extends Settings { }
const SettingsContext = React.createContext<ProductSettingsContextProps>({
officeId: 1,
catalogueId: 1,
language: "nl-BE",
basePath: 'boeken',
priceMode: 0
});
export default SettingsContext;