mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 07:51:55 +03:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
|
export default ({title, hash, label}) => (
|
||
|
<div className="gm-auth-footer">
|
||
|
<div className="flex items-baseline">
|
||
|
<h4>{ title }</h4>
|
||
|
<a href={hash}>
|
||
|
{ label }
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|