diff --git a/plugins/gcp-projects/package.json b/plugins/gcp-projects/package.json
index 71b212a698..48205e4fd8 100644
--- a/plugins/gcp-projects/package.json
+++ b/plugins/gcp-projects/package.json
@@ -35,9 +35,9 @@
"@backstage/core-plugin-api": "^0.1.12",
"@backstage/theme": "^0.2.12",
"@material-ui/core": "^4.12.2",
- "@material-ui/data-grid": "^4.0.0-alpha.37",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
+ "material-table": "^1.69.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^6.0.0-beta.0",
diff --git a/plugins/gcp-projects/src/components/ProjectListPage/ProjectListPage.tsx b/plugins/gcp-projects/src/components/ProjectListPage/ProjectListPage.tsx
index e4137f96c7..2797d17d0d 100644
--- a/plugins/gcp-projects/src/components/ProjectListPage/ProjectListPage.tsx
+++ b/plugins/gcp-projects/src/components/ProjectListPage/ProjectListPage.tsx
@@ -16,8 +16,17 @@
// NEEDS WORK
import { Button, LinearProgress, Tooltip, Typography } from '@material-ui/core';
-import { DataGrid, GridColDef, GridCellParams } from '@material-ui/data-grid';
-import React from 'react';
+import MaterialTable from 'material-table';
+import ArrowDownward from '@material-ui/icons/ArrowDownward';
+import ChevronLeft from '@material-ui/icons/ChevronLeft';
+import ChevronRight from '@material-ui/icons/ChevronRight';
+import Clear from '@material-ui/icons/Clear';
+import FilterList from '@material-ui/icons/FilterList';
+import FirstPage from '@material-ui/icons/FirstPage';
+import LastPage from '@material-ui/icons/LastPage';
+import Search from '@material-ui/icons/Search';
+import React, { forwardRef } from 'react';
+
import { useAsync } from 'react-use';
import { gcpApiRef, Project } from '../../api';
@@ -59,18 +68,6 @@ const PageContents = () => {
const { loading, error, value } = useAsync(() => api.listProjects());
- const [page, setPage] = React.useState(0);
- const [rowsPerPage, setRowsPerPage] = React.useState(10);
-
- const handleChangePage = (newPage: number) => {
- setPage(newPage);
- };
-
- const handleChangeRowsPerPage = (pageSize: number) => {
- setRowsPerPage(pageSize);
- setPage(0);
- };
-
if (loading) {
return