diff --git a/plugins/gcp-projects/package.json b/plugins/gcp-projects/package.json
index 65458ea88b..71b212a698 100644
--- a/plugins/gcp-projects/package.json
+++ b/plugins/gcp-projects/package.json
@@ -35,6 +35,7 @@
"@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",
"react": "^16.13.1",
diff --git a/plugins/gcp-projects/src/components/NewProjectPage/NewProjectPage.tsx b/plugins/gcp-projects/src/components/NewProjectPage/NewProjectPage.tsx
index 584cffc50c..5ecc7f15d4 100644
--- a/plugins/gcp-projects/src/components/NewProjectPage/NewProjectPage.tsx
+++ b/plugins/gcp-projects/src/components/NewProjectPage/NewProjectPage.tsx
@@ -28,6 +28,10 @@ import {
StructuredMetadataTable,
SupportButton,
} from '@backstage/core-components';
+import { Link as RouterLink } from 'react-router-dom';
+
+import { useRouteRef } from '@backstage/core-plugin-api';
+import { rootRouteRef } from '../../routes';
export const Project = () => {
const [projectName, setProjectName] = useState('');
@@ -79,18 +83,20 @@ export const Project = () => {