constdefaultStateFactory = () => ({});
/**
* This allows us to access the server state in the front-end
*/const ssrState = typeofwindow !== 'undefined' ? (window.__SCALAR__ ?? defaultStateFactory()) : defaultStateFactory();
export { defaultStateFactory, ssrState };