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