# extendify/3.1.3/src/Shared/components/EditPageToolTip.jsx

Extendify, version 3.1.3. 18 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.3/code/src/Shared/components/EditPageToolTip.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.1.3/raw/src/Shared/components/EditPageToolTip.jsx
- Modified: 2026-02-18T22:27:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.3/code/src/Shared/components/EditPageToolTip.jsx#L10-L20`.

```jsx
import { __ } from '@wordpress/i18n';
import '@shared/shared.css';
import { ToolTip } from '@shared/components/ToolTip';

export const EditPageToolTip = () => {
	return (
		<ToolTip
			title={__('Tooltip pointing to the edit page button', 'extendify-local')}
			anchor={document.querySelector('#wp-admin-bar-edit')}
		>
			{__(
				"Welcome to your new site! When you're ready, press here to edit this page.",
				'extendify-local',
			)}
		</ToolTip>
	);
};

```
