9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
|
|
export default function LogsPage() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1 className="text-2xl font-bold mb-4">Logs</h1>
|
||
|
|
<p className="text-on-surface-variant">Activity logs will appear here.</p>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|