Initial Code Commit
This commit is contained in:
13
Project/app/buildings/[buildingid]/page.tsx
Executable file
13
Project/app/buildings/[buildingid]/page.tsx
Executable file
@@ -0,0 +1,13 @@
|
||||
// app/buildings/[buildingid]/page.tsx
|
||||
|
||||
interface BuildingPageProps {
|
||||
params: { buildingid: string };
|
||||
}
|
||||
|
||||
export default function BuildingPage({ params }: BuildingPageProps) {
|
||||
return (
|
||||
<div className="flex items-center justify-center text-center h-full">
|
||||
Select a tab to view information about this building.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user