1
0
mirror of https://github.com/TryGhost/Ghost.git synced 2024-12-21 01:41:46 +03:00
Ghost/ghost/members-auth-pages/components/FormSubmit.js

8 lines
192 B
JavaScript
Raw Normal View History

export default ({onClick, label}) => (
<div className="mt7">
<button type="submit" className="gm-btn-blue" onClick={onClick}>
{ label }
</button>
</div>
);