Redirect manage root to active jobs.
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
import React from "react";
|
||||
import DashboardGridComponent from "../../components/dashboard-grid/dashboard-grid.component";
|
||||
|
||||
//import DashboardGridComponent from "../../components/dashboard-grid/dashboard-grid.component";
|
||||
import { Redirect } from "react-router-dom";
|
||||
export default function ManageRootPageComponent() {
|
||||
//const client = useApolloClient();
|
||||
return (
|
||||
<div>
|
||||
<DashboardGridComponent />
|
||||
</div>
|
||||
);
|
||||
|
||||
return <Redirect to={`/manage/jobs`} />;
|
||||
|
||||
// return (
|
||||
// <div>
|
||||
// <DashboardGridComponent />
|
||||
// </div>
|
||||
// );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user