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