{"version":3,"file":"coopse.script.999.2a741702.chunk.js","mappings":"uJAwBA,IAZkEA,IAE1D,UAAC,IAAY,YACT,SAAC,IAAY,CACTC,eAAe,EACfC,6BAA8BF,EAAME,+BAEvCF,EAAMG,W,yDCZnB,UAJiB,KACN,SAAC,IAAU,G","sources":["webpack:///./src/microApps/base/BaseLayout.tsx","webpack:///./src/microApps/base/BasePage.tsx"],"sourcesContent":["import type { FC } from 'react';\n\nimport CommonLayout from './components/CommonLayout';\nimport GlobalHeader from './components/Header/GlobalHeader';\n\ninterface BaseLayoutProps {\n    stayAfterLoginLogoutRedirect?: boolean;\n}\n\n/**\n * Layout for every page that is not using a more specific Layout, like i.e. EcommerceLayout\n */\nconst BaseLayout: FC<React.PropsWithChildren<BaseLayoutProps>> = (props) => {\n    return (\n        <CommonLayout>\n            <GlobalHeader\n                hideB2BSwitch={false}\n                stayAfterLoginLogoutRedirect={props.stayAfterLoginLogoutRedirect}\n            />\n            {props.children}\n        </CommonLayout>\n    );\n};\n\nexport default BaseLayout;\n","import BaseLayout from './BaseLayout';\n\n// This is rendered from backend if initial HTML doesnt have any micro app\nconst BasePage = () => {\n    return <BaseLayout />;\n};\n\nexport default BasePage;\n"],"names":["props","hideB2BSwitch","stayAfterLoginLogoutRedirect","children"],"sourceRoot":""}