multi-downloader-nx_mirror/gui/react/src/components/MainFrame/Progress/Progress.tsx
2022-02-05 13:18:19 +01:00

12 lines
No EOL
276 B
TypeScript

import React from "react";
import { messageChannelContext } from "../../../provider/MessageChannel";
import useDownloadManager from "../DownloadManager/DownloadManager";
const Progress: React.FC = () => {
useDownloadManager();
return <></>
}
export default Progress;