Twan07 commited on
Commit
728752a
·
verified ·
1 Parent(s): 0c15769

Create src/admin/Dashboard.tsx

Browse files
Files changed (1) hide show
  1. src/admin/Dashboard.tsx +10 -0
src/admin/Dashboard.tsx ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import SecurityTimeline from "./charts/SecurityTimeline";
2
+
3
+ export default function Dashboard() {
4
+ return (
5
+ <div>
6
+ <h1 className="text-xl font-bold mb-4">Dashboard</h1>
7
+ <SecurityTimeline />
8
+ </div>
9
+ );
10
+ }