Docs
API Reference
Plugins

Plugins

⚠️ The plugin API is highly experimental and is likely to experience breaking changes.

Plugins allow you to build extensions that enhance the capabilities of Puck.

const myPlugin = {
  renderRoot: ({ children }) => <div>{children}</div>,
};
 
export const Example = () => {
    return <Puck config={config} data={data} plugins={[myPlugin]}>
}

Contents