aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/download-manager/DownloadManagerScreen.tsx
blob: 3413be37ac80bfd81b5ed88a4a14567f2f9d98fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import DownloadManager from '../../components/downloadManager/DownloadManagerDashboard';
import ErrorBoundary from '../../components/util/ErrorBoundary';

const DownloadManagerScreen = ({ ...props }) => {
  return (
    <ErrorBoundary>
      <DownloadManager {...props} />
    </ErrorBoundary>
  );
};

export default DownloadManagerScreen;