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

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

export default DownloadManagerScreen;