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