Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/prebuilds/list/PrebuildListPage.tsx
2501 views
1
/**
2
* Copyright (c) 2024 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
import { PageHeading } from "@podkit/layout/PageHeading";
8
import { PrebuildsList } from "./PrebuildList";
9
import { useDocumentTitle } from "../../hooks/use-document-title";
10
11
const PrebuildListPage = () => {
12
useDocumentTitle("Prebuilds");
13
14
return (
15
<div className="app-container pb-8">
16
<PageHeading title="Prebuilds" subtitle="Review prebuilds of your added repositories." />
17
<PrebuildsList />
18
</div>
19
);
20
};
21
22
export default PrebuildListPage;
23
24