34 lines
993 B
TypeScript
34 lines
993 B
TypeScript
"use server";
|
|
import React from "react";
|
|
|
|
const BuildChildComponent = () => {
|
|
return (
|
|
<>
|
|
<h1>Building Management</h1>
|
|
<div className="bg-white rounded-lg shadow p-6 mb-4">
|
|
<p>Building page content goes here</p>
|
|
</div>
|
|
<div className="bg-white rounded-lg shadow p-6 mb-4">
|
|
<p>More content goes here</p>
|
|
</div>
|
|
<div className="bg-white rounded-lg shadow p-6 mb-4">
|
|
<p>Building page content goes here</p>
|
|
</div>
|
|
<div className="bg-white rounded-lg shadow p-6 mb-4">
|
|
<p>More content goes here</p>
|
|
</div>
|
|
<div className="bg-white rounded-lg shadow p-6 mb-4">
|
|
<p>Building page content goes here</p>
|
|
</div>
|
|
<div className="bg-white rounded-lg shadow p-6 mb-4">
|
|
<p>More content goes here</p>
|
|
</div>
|
|
<div className="bg-white rounded-lg shadow p-6 mb-4">
|
|
<p>Even more content goes here</p>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default BuildChildComponent;
|