5df736dc6b
make it clear lists page is truncated lists display page cleanup
22 lines
505 B
JavaScript
22 lines
505 B
JavaScript
// @flow
|
|
import * as ICONS from 'constants/icons';
|
|
import React from 'react';
|
|
import Page from 'component/page';
|
|
import PlaylistsMine from 'component/playlistsMine';
|
|
import Icon from 'component/common/icon';
|
|
|
|
function PlaylistsPage() {
|
|
return (
|
|
<Page>
|
|
<label className="claim-list__header-label">
|
|
<span>
|
|
<Icon icon={ICONS.STACK} size={10} />
|
|
{__('Playlists')}
|
|
</span>
|
|
</label>
|
|
<PlaylistsMine />
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
export default PlaylistsPage;
|