🚧 add blueprint to the sidebar and scaffold page

This commit is contained in:
Fred KISSIE
2025-10-22 21:56:26 +02:00
parent e575fae73b
commit 202d2075a6
2 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
type BluePrintsPageProps = {
params: Promise<{ orgId: string }>;
searchParams: Promise<{ view?: string }>;
};
export default async function BluePrintsPage(props: BluePrintsPageProps) {
const params = await props.params;
return <></>
}