9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
|
|
export default function SessionsPage() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1 className="text-2xl font-bold mb-4">Sessions</h1>
|
||
|
|
<p className="text-on-surface-variant">Active sessions will appear here.</p>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|