| 1 |
import { PluginSidebar, PluginSidebarMoreMenuItem } from '@wordpress/edit-post' |
| 2 |
import { __ } from '@wordpress/i18n' |
| 3 |
import { registerPlugin } from '@wordpress/plugins' |
| 4 |
import { Draft } from '@draft/Draft' |
| 5 |
import { magic } from '@draft/svg' |
| 6 |
import './app.css' |
| 7 |
|
| 8 |
registerPlugin('extendify-draft', { |
| 9 |
render: () => ( |
| 10 |
<> |
| 11 |
<PluginSidebarMoreMenuItem target="draft"> |
| 12 |
{__('Draft', 'extendify')} |
| 13 |
</PluginSidebarMoreMenuItem> |
| 14 |
<PluginSidebar |
| 15 |
name="draft" |
| 16 |
icon={magic} |
| 17 |
title={__('AI Tools', 'extendify')} |
| 18 |
className="extendify-draft"> |
| 19 |
<Draft /> |
| 20 |
</PluginSidebar> |
| 21 |
</> |
| 22 |
), |
| 23 |
}) |
| 24 |
|