| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
import '@shared/shared.css'; |
| 3 |
import { ToolTip } from '@shared/components/ToolTip'; |
| 4 |
|
| 5 |
export const EditPageToolTip = () => { |
| 6 |
return ( |
| 7 |
<ToolTip |
| 8 |
title={__('Tooltip pointing to the edit page button', 'extendify-local')} |
| 9 |
anchor={document.querySelector('#wp-admin-bar-edit')} |
| 10 |
> |
| 11 |
{__( |
| 12 |
"Welcome to your new site! When you're ready, press here to edit this page.", |
| 13 |
'extendify-local', |
| 14 |
)} |
| 15 |
</ToolTip> |
| 16 |
); |
| 17 |
}; |
| 18 |
|