a | b/client/src/components/Dashboard.jsx | ||
---|---|---|---|
1 | import Graphs from "./Graphs"; |
||
2 | import APITest from "./APITest"; |
||
3 | |||
4 | function Dashboard() { |
||
5 | return ( |
||
6 | <div className="overflow-y-scroll h-[85vh]"> |
||
7 | <Graphs /> |
||
8 | <APITest /> |
||
9 | </div> |
||
10 | ); |
||
11 | } |
||
12 | |||
13 | export default Dashboard; |