Skip to content

Instantly share code, notes, and snippets.

@bfintal
Last active January 26, 2020 15:52
Show Gist options
  • Save bfintal/8fbe8f4ef01f6c05e7fbae0f4b863b80 to your computer and use it in GitHub Desktop.
Save bfintal/8fbe8f4ef01f6c05e7fbae0f4b863b80 to your computer and use it in GitHub Desktop.
import { registerPlugin } from '@wordpress/plugins'
import { useEffect } from '@wordpress/element'
const doSomething = () => {
useEffect( () => {
// Do whatever when the block editor is initialized.
}, [] )
return null
}
registerPlugin( 'do-something', {
render: doSomething,
} )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment