Blame view

pages/admin/reviews/index.js 1.25 KB
.  
jaymehta committed
1 2 3 4 5 6
import React from "react";
import Reviews from "../../../components/admin/Reviews";
import Sidebar from "../../../components/layout/AdminDashboardSidebar";
import Layout from "../../../components/layout/Layout";
import { getActivitiesByFilters } from "../../../redux/actions/activityAction";
import { wrapper } from "../../../redux/store";
Chetan committed
7
import { GenericLayout } from "../../../components/layout/Generics/GenericLayout";
.  
jaymehta committed
8 9 10

const ReviewsPage = () => {
  return (
Chetan committed
11 12 13 14 15 16 17 18 19 20 21 22
    // <div>
    //   <Layout>
    //     <div className="sidebarContainer">
    //       <Sidebar />
    //       <div className="content">
    <GenericLayout>
      <Reviews isVendor={false} />
    </GenericLayout>
    //       </div>
    //     </div>
    //   </Layout>
    // </div>
.  
jaymehta committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
  );
};

export default ReviewsPage;

/** For server side rendering */
export const getServerSideProps = wrapper.getServerSideProps(store => async ({ req, query }) => {
  // await store.dispatch(loadUser());
  await store.dispatch(getActivitiesByFilters({}));
  // await store.dispatch(getAllVendors());
  // await store.dispatch(loadUser());
  // await store.dispatch(getActivitiesByVendor());
  // await store.dispatch(getAllCategories());
  // await store.dispatch(getAllSubCategories());
  return {
    props: {}
  };
});