@qite/tide-booking-component
Version:
React Booking wizard & Booking product component for Tide
17 lines (13 loc) • 370 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,
displayMode: 'calendar',
searchType: 0
});
export default SettingsContext;