Feat:Added file table on the Dashboard

This commit is contained in:
Atharva Ombase
2025-04-15 04:14:00 +05:30
parent 710a08c868
commit 4219570d80
+15 -5
View File
@@ -1,17 +1,27 @@
import React from "react";
import Sidebar from "../../components/Sidebar";
import FileList from "../../components/FileList";
const Dashboard = () => {
const [files, setFiles] = React.useState([]);
React.useEffect(() => {
const fetchData = async () => {
const response = await fetch(
"http://192.168.29.61:8080/api/hdfs/listFiles?hdfsPath=/"
);
const data = await response.json();
setFiles(data);
};
fetchData();
}, []);
return (
<>
<Sidebar />
<div className="p-4 sm:ml-64">
<div className="p-4 border-2 border-gray-200 border-dashed rounded-lg mt-14">
<h1 className="text-2xl font-bold mb-4">Dashboard</h1>
<p>
This is your custom dashboard body. Place your widgets, charts,
stats, or other components here.
</p>
<FileList files={files}></FileList>
</div>
</div>
</>