// @flow import React from 'react'; import classnames from 'classnames'; import RewardSummary from 'component/rewardSummary'; import RewardTotal from 'component/rewardTotal'; import Page from 'component/page'; import UnsupportedOnWeb from 'component/common/unsupported-on-web'; import UserEmail from 'component/userEmail'; import InvitePage from 'page/invite'; import YoutubeChannelList from 'component/youtubeChannelList'; type Props = { ytChannels: Array, }; const AccountPage = (props: Props) => { const { ytChannels } = props; const hasYoutubeChannels = Boolean(ytChannels.length); return ( {/* @if TARGET='web' */} {/* @endif */}
{hasYoutubeChannels && }
); }; export default AccountPage;