🚧 list policies endpoint + list policies table

This commit is contained in:
Fred KISSIE
2026-02-13 05:39:35 +01:00
parent 47fe497ca1
commit 8d682ed9ad
2 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { getTranslations } from "next-intl/server";
export interface ResourcePoliciesPageProps {
params: Promise<{ orgId: string }>;
searchParams: Promise<{ view?: string }>;
}
export default async function ResourcePoliciesPage(
props: ResourcePoliciesPageProps
) {
const params = await props.params;
const t = await getTranslations();
return <></>;
}