12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
import React from 'react';
|
|
|
|
const AssetTitle = ({claimId}) => {
|
|
return (
|
|
<div>
|
|
<p>Show asset info here</p>
|
|
<p>claimId: {claimId}</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AssetTitle;
|