import React, { useEffect, useState } from 'react'; import axios from 'axios'; import './App.css'; function App() { const [downloadedFiles, setDownloadedFiles] = useState([]); useEffect(() => { fetchDownloadedFiles(); const interval = setInterval(() => { fetchDownloadedFiles(); }, 60000); // Fetch new content every minute return () => clearInterval(interval); }, []); const fetchDownloadedFiles = async () => { try { const response = await axios.get('http://localhost:5001/downloads'); setDownloadedFiles(response.data); } catch (error) { console.error('Error fetching downloaded files:', error); } }; return (
No content available
) : ( downloadedFiles.map((file, index) => { const fileUrl = `http://localhost:5001/static/${file}`; console.log('Fetching file:', fileUrl); // Log the file URL return (