Blame view

pages/cancellation-refund-policy.js 599 Bytes
Ravindra Kanojiya committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

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: {},

  };
});