importCancellationRefundPolicyfrom"../components/cancellation-refund-policy/CancellationRefundPolicy";importLayoutfrom"../components/layout/Layout";import{wrapper}from"../redux/store";exportdefaultfunctionCancellationRefundPolicyPage(){return(<Layout><CancellationRefundPolicy/></Layout>);}/** For server side rendering */exportconstgetServerSideProps=wrapper.getServerSideProps(store=>async({req,query})=>{// Get the menu data.// get the locations data.// await store.dispatch(loadUser())return{props:{},};});