9 lines
185 B
TypeScript
Executable File
9 lines
185 B
TypeScript
Executable File
export default function Title() {
|
|
return (
|
|
<div className="py-2 px-3
|
|
rounded-xl text-4xl font-semibold mt-10">
|
|
<h1>Welcome to the Tenant Portal</h1>
|
|
</div>
|
|
);
|
|
}
|