import React from 'react'; import SEO from 'components/SEO'; import ErrorPage from 'components/ErrorPage'; import NavBar from 'containers/NavBar'; import ChannelClaimsDisplay from 'containers/ChannelClaimsDisplay'; class ShowChannel extends React.Component { render () { const { channel } = this.props; if (channel) { const { name, longId, shortId } = channel; return (

channel name: {name}

full channel id: {longId}

short channel id: {shortId}

); }; return ( ); } }; export default ShowChannel;