# PluginPrePublishPanel This slot allows for injecting items into the bottom of the pre-publish panel that appears to confirm publishing after the user clicks "Publish". ## Example ```js import { registerPlugin } from '@wordpress/plugins'; import { PluginPrePublishPanel } from '@wordpress/edit-post'; const PluginPrePublishPanelTest = () => (

Pre Publish Panel

); registerPlugin( 'pre-publish-panel-test', { render: PluginPrePublishPanelTest, } ); ``` ## Location ![Prepublish panel](https://raw.githubusercontent.com/WordPress/gutenberg/HEAD/docs/assets/plugin-pre-publish-panel.png?raw=true)