utility-function-extractor/lib/displayElement.js

14 lines
340 B
JavaScript
Raw Normal View History

2021-06-07 11:16:28 +00:00
import React from "react";
export function DisplayElement({element}){
return(
<div>
<a href={element.url} target="_blank">
<h1>{`${element.name}`}</h1>
</a>
2021-06-07 14:01:15 +00:00
<p>{`Author: ${element.author}`}</p>
<p>{`Karma: ${element.karma}`}</p>
2021-06-07 11:16:28 +00:00
</div>
)
}