123 / src /admin /Dashboard.tsx
Twan07's picture
Create src/admin/Dashboard.tsx
728752a verified
raw
history blame
223 Bytes
import SecurityTimeline from "./charts/SecurityTimeline";
export default function Dashboard() {
return (
<div>
<h1 className="text-xl font-bold mb-4">Dashboard</h1>
<SecurityTimeline />
</div>
);
}