mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-08 06:42:39 +02:00
19 lines
No EOL
490 B
TypeScript
19 lines
No EOL
490 B
TypeScript
import { Metadata } from "next";
|
|
import { SourcesList } from "./components/sources-list";
|
|
import { requireActiveBillingSubscription } from '@/app/lib/billing';
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Data sources",
|
|
}
|
|
|
|
export default async function Page(
|
|
props: {
|
|
params: Promise<{ projectId: string }>
|
|
}
|
|
) {
|
|
const params = await props.params;
|
|
await requireActiveBillingSubscription();
|
|
return <SourcesList
|
|
projectId={params.projectId}
|
|
/>;
|
|
} |