mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
|
export default ({title, label, hash}) => (
|
||
|
<div className="flex items-baseline mt2">
|
||
|
<h4>{ title }</h4>
|
||
|
<a href={hash}>
|
||
|
{ label }
|
||
|
</a>
|
||
|
</div>
|
||
|
);
|