madiator.com/ui/page/lists/view.jsx
2021-08-16 12:11:25 +02:00

22 lines
511 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>
<label className="claim-list__header-label">
<span>
<Icon icon={ICONS.STACK} size={10} />
{__('Lists')}
</span>
</label>
<CollectionsListMine />
</Page>
);
}
export default ListsPage;