cancellation-refund-policy.js
599 Bytes
import CancellationRefundPolicy from "../components/cancellation-refund-policy/CancellationRefundPolicy";
import Layout from "../components/layout/Layout";
import { wrapper } from "../redux/store";
export default function CancellationRefundPolicyPage() {
return (
<Layout>
<CancellationRefundPolicy />
</Layout>
);
}
/** For server side rendering */
export const getServerSideProps = wrapper.getServerSideProps(store => async ({ req, query }) => {
// Get the menu data.
// get the locations data.
// await store.dispatch(loadUser())
return {
props: {},
};
});