index.js 438 Bytes
import React from "react";
import { wrapper } from "../../redux/store";

const ActivitiesListingPage = () => {
  return <div>

  </div>;
};

export default ActivitiesListingPage;

/** 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: {}
  };
});