[0d34a1]: / client / src / components / Dashboard.jsx

Download this file

13 lines (11 with data), 252 Bytes

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