mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-02 08:46:38 +00:00
🚧 add blueprint to the sidebar and scaffold page
This commit is contained in:
14
src/app/[orgId]/settings/blueprints/page.tsx
Normal file
14
src/app/[orgId]/settings/blueprints/page.tsx
Normal 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 <></>
|
||||
}
|
||||
Reference in New Issue
Block a user