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