implemented basica channel content request routes

This commit is contained in:
bill bittner 2018-01-30 11:46:22 -08:00
commit 091d073d01
12 changed files with 215 additions and 125 deletions
react/components/AssetDisplay

View file

@ -1,9 +1,9 @@
import React from 'react';
const AssetDisplay = () => {
const AssetDisplay = ({claimName, claimId}) => {
return (
<div>
<p>display asset here</p>
<p>display {claimName}#{claimId} here</p>
</div>
);
};