import React from 'react'; import { Settings } from './types'; interface ProductSettingsContextProps extends Settings {} const SettingsContext = React.createContext({ officeId: 1, catalogueId: 1, language: 'nl-BE', basePath: 'boeken', priceMode: 0, displayMode: 'calendar', searchType: 0 }); export default SettingsContext;