mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
19f243aed1
no issue - Updated members auth flow UI - Updated members settings and routing to be dynamic
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
export default ({title, label, icon, hash}) => (
|
|
<div className="gm-auth-cta">
|
|
{title ? (<h4>{ title }</h4>) : ""}
|
|
<a href={hash}>
|
|
{ label }
|
|
{ icon }
|
|
</a>
|
|
</div>
|
|
);
|