lbry-desktop/src/ui/page/discover/view.jsx

25 lines
556 B
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import React from 'react';
2019-06-19 07:05:43 +02:00
import ClaimListDiscover from 'component/claimListDiscover';
2019-06-11 20:10:58 +02:00
import TagsSelect from 'component/tagsSelect';
2018-03-26 23:32:43 +02:00
import Page from 'component/page';
2017-12-08 21:14:35 +01:00
2018-03-26 23:32:43 +02:00
type Props = {
2019-06-11 20:10:58 +02:00
followedTags: Array<Tag>,
2018-03-26 23:32:43 +02:00
};
2017-12-08 21:14:35 +01:00
2019-06-11 20:10:58 +02:00
function DiscoverPage(props: Props) {
const { followedTags } = props;
return (
2019-06-17 22:32:38 +02:00
<Page>
2019-06-19 07:05:43 +02:00
<ClaimListDiscover
2019-06-11 20:10:58 +02:00
personal
tags={followedTags.map(tag => tag.name)}
2019-06-27 08:18:45 +02:00
injectedItem={<TagsSelect showClose title={__('Customize Your Homepage')} />}
2019-06-11 20:10:58 +02:00
/>
</Page>
);
2017-05-04 05:44:08 +02:00
}
2017-05-25 18:29:56 +02:00
export default DiscoverPage;