Gutenberg ServerSideRender is deprecated, how to work with new wp.serverSideRender component?

The component is still functional, the issue is due to how it was pulled out into its own package. It is no longer uppercase and in order to use it in JSX, you will need to alias it:

const { serverSideRender: ServerSideRender } = wp;

See this issue for more details.

Leave a Comment