3034f4ce6c
* bring in ody styles; modify; cleanup * workflow * workflow * v0.52.6-alpha.teststyles.1 * fix hook * v0.52.6-alpha.teststyles.2 * style fixes * fix pagination styling * v0.52.6-alpha.teststyles.3 * wallet icon was bad * restore deploy script * fixes * fix player close button * modal inputs * cleanup * cleanup * fix staked indicator * fix profile menu button skel delay * fix view-all-playlists hover * fix overlay buttons on collection page * fix header buttons
22 lines
544 B
JavaScript
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;
|