lbry-desktop/ui/page/library/view.jsx

15 lines
242 B
React
Raw Normal View History

2019-06-28 09:33:07 +02:00
// @flow
import React from 'react';
import Page from 'component/page';
import DownloadList from 'page/fileListDownloaded';
function LibraryPage() {
return (
<Page>
<DownloadList />
</Page>
);
}
export default LibraryPage;