spee.ch/react/components/AssetDisplay/index.js
2018-01-30 11:46:22 -08:00

11 lines
195 B
JavaScript

import React from 'react';
const AssetDisplay = ({claimName, claimId}) => {
return (
<div>
<p>display {claimName}#{claimId} here</p>
</div>
);
};
export default AssetDisplay;