12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
import React from "react";
|
|
import DashboardGridComponent from "../../components/dashboard-grid/dashboard-grid.component";
|
|
|
|
export default function ManageRootPageComponent() {
|
|
//const client = useApolloClient();
|
|
return (
|
|
<div>
|
|
<DashboardGridComponent />
|
|
</div>
|
|
);
|
|
}
|