disclaimer.js 633 Bytes

import CancellationRefundPolicy from "../components/cancellation-refund-policy/CancellationRefundPolicy";
import Disclaimer from "../components/disclaimer/Disclaimer";
import Layout from "../components/layout/Layout";
import { wrapper } from "../redux/store";

export default function DisclaimerPage() {

  return (
    <Layout>
      <Disclaimer />
    </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: {},

  };
});