11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
export default function LabPage() {
|
|
return (
|
|
<div className="space-y-3">
|
|
<h1 className="text-2xl font-semibold text-text-primary">Lab Management</h1>
|
|
<p className="text-sm text-text-secondary">
|
|
Lab management module is coming soon.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|