Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active September 22, 2019 13:59
Show Gist options
  • Save vanaf1979/88e883a15e7552f748532b0a359b8589 to your computer and use it in GitHub Desktop.
Save vanaf1979/88e883a15e7552f748532b0a359b8589 to your computer and use it in GitHub Desktop.
Gist for my tutorial: Building a Gutenberg sidebar plugin Part 3: Registering with the block editor. https://vanaf1979.nl/building-a-gutenberg-sidebar-plugin-part-3-registering-with-the-block-editor/
/**
* Sidebar component voor the gutenberg editor.
*/
class Sidebar extends React.Component {
constructor() {
super()
}
render() {
return (
<Fragment>
</Fragment>
)
}
}
export default Sidebar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment