index.js
19 lines
| 1 | /** |
| 2 | * WordPress dependencies |
| 3 | */ |
| 4 | const { __ } = wp.i18n; |
| 5 | |
| 6 | /** |
| 7 | * Render Help link |
| 8 | */ |
| 9 | |
| 10 | const GiveHelpLink = () => { |
| 11 | return ( |
| 12 | <p className="give-blank-slate__help"> |
| 13 | Need help? Get started with <a href="http://docs.givewp.com/give101/" target="_blank" rel="noopener noreferrer">{ __( 'GiveWP 101' ) }</a> |
| 14 | </p> |
| 15 | ); |
| 16 | }; |
| 17 | |
| 18 | export default GiveHelpLink; |
| 19 |