import React from 'react'; import NavBar from 'containers/NavBar'; class ShowChannel extends React.Component { componentDidMount () { console.log(this.props); } render () { return (

channelName: {this.props.channelName}

channelClaimId: {this.props.channelClaimId}

{((this.props.totalPages === 0) &&

There is no content in {this.props.channelName}:{this.props.longChannelClaimId} yet. Upload some!

)} {((this.props.totalPages >= 1) &&

Below are the contents for {this.channelName}:{this.longChannelClaimId}

{/* claims here */}
)}
); } }; // required props // channelName // channelLongClaimId // channelShortClaimId // totalPages // claims export default ShowChannel;