// @flow import React from 'react'; import Button from 'component/button'; type Channel = { yt_channel_name: string, lbry_channel_name: string, channel_claim_id: string, sync_status: string, status_token: string, transferable: boolean, transfer_state: string, publish_to_address: Array, }; type Props = { channel: Channel, }; export default function YoutubeChannelItem(props: Props) { const { yt_channel_name: ytName, lbry_channel_name: lbryName, channel_claim_id: claimId, sync_status: syncStatus, status_token: statusToken, transferable, transfer_state: transferState, publish_to_address: publishAddresses, } = props.channel; const LbryYtUrl = 'https://lbry.com/youtube/status/'; // // // {__('Youtube Name')} // {__('LBRY Name')} // {__('Sync Status')} // {__('Transfer Status')} // // const doTransfer = () => {}; return ( {ytName}