🚧 wip: org labels page

This commit is contained in:
Fred KISSIE
2026-05-14 19:31:53 +02:00
parent 4334480675
commit 8f7e5ab1ed
3 changed files with 34 additions and 3 deletions
@@ -0,0 +1,20 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Enterprise Licenses"
};
type Props = {
params: Promise<{ orgId: string }>;
searchParams: Promise<Record<string, string>>;
};
export const dynamic = "force-dynamic";
export default async function LabelsPage({ params, searchParams }: Props) {
const { orgId } = await params;
const sp = await searchParams;
return <></>;
}