mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-04-25 10:13:00 +00:00
12 lines
No EOL
276 B
TypeScript
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; |