spee.ch/react/components/AssetDisplay/index.js
2018-01-30 15:32:42 -08:00

11 lines
197 B
JavaScript

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