13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
|
|
export function Activity() {
|
|
return (
|
|
<div>
|
|
<h2 className="text-3xl font-bold tracking-tight">Activity</h2>
|
|
<p className="text-muted-foreground">Recent bot activity logs.</p>
|
|
<div className="mt-6 rounded-xl border border-dashed p-8 text-center text-muted-foreground">
|
|
Activity feed coming soon...
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|