import React from 'react'; class ChannelPage extends React.Component{ componentDidMount() { this.fetchClaims(this.props) } componentWillReceiveProps(nextProps) { this.fetchClaims(nextProps) } fetchClaims(props) { if (props.claims === undefined) { props.fetchClaims(props.uri) } } render() { const { claims, claim, uri } = this.props console.log(claims); return

{uri}

This channel page is a stub.

{claims}
} } export default ChannelPage;