lbry-desktop/ui/page/library/view.jsx
2019-11-11 13:27:29 -05:00

15 lines
242 B
JavaScript

// @flow
import React from 'react';
import Page from 'component/page';
import DownloadList from 'page/fileListDownloaded';
function LibraryPage() {
return (
<Page>
<DownloadList />
</Page>
);
}
export default LibraryPage;