importReactfrom"react";import{wrapper}from"../../redux/store";constActivitiesListingPage=()=>{return<div></div>;};exportdefaultActivitiesListingPage;/** 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:{}};});