// @flow import React from 'react'; import Page from 'component/page'; import ClaimListDiscover from 'component/claimListDiscover'; import ClaimEffectiveAmount from 'component/claimEffectiveAmount'; import { TYPE_TOP, TIME_ALL } from 'component/claimListDiscover/view'; type Props = { name: string, }; function TopPage(props: Props) { const { name } = props; return ( ( )} header={{__('Top claims at lbry://%name%', { name })}} /> ); } export default TopPage;