aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/download-manager/DownloadManagerScreen.tsx
blob: cd9686f4d3ca54f7865a2324fbfa9116bdb6fa70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component, type ReactElement } from 'react';
import DownloadManager from '../../components/downloadManager/DownloadManagerDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';

class DownloadManagerScreen extends Component {
  render(): ReactElement {
    return (
      <ErrorBoundary>
        <DownloadManager {...this.props} />
      </ErrorBoundary>
    );
  }
}

export default DownloadManagerScreen;