lbry-desktop/ui/page/lists/view.jsx
2022-04-15 15:29:37 -04:00

22 lines
544 B
JavaScript

// @flow
import * as ICONS from 'constants/icons';
import React from 'react';
import Page from 'component/page';
import CollectionsListMine from 'component/collectionsListMine';
import Icon from 'component/common/icon';
function ListsPage() {
return (
<Page className="playlistPage-wrapper">
<label className="claim-list__header-label">
<span>
<Icon icon={ICONS.STACK} size={10} />
{__('Lists')}
</span>
</label>
<CollectionsListMine />
</Page>
);
}
export default ListsPage;