aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/download-manager/DownloadManagerScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/download-manager/DownloadManagerScreen.tsx')
-rw-r--r--src/containers/download-manager/DownloadManagerScreen.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/containers/download-manager/DownloadManagerScreen.tsx b/src/containers/download-manager/DownloadManagerScreen.tsx
new file mode 100644
index 000000000..5d395a180
--- /dev/null
+++ b/src/containers/download-manager/DownloadManagerScreen.tsx
@@ -0,0 +1,15 @@
1import { Component, ReactElement } from 'react';
2import ErrorBoundary from '../../components/util/ErrorBoundary';
3import DownloadManager from '../../components/downloadManager/DownloadManagerDashboard';
4
5class DownloadManagerScreen extends Component {
6 render(): ReactElement {
7 return (
8 <ErrorBoundary>
9 <DownloadManager {...this.props} />
10 </ErrorBoundary>
11 );
12 }
13}
14
15export default DownloadManagerScreen;