The Drag & Drop Headless CMS
Integrate with any site or app. Drag and drop with the components already in your codebase.
Register components | Rendered your visually created content |
import { Builder } from '@builder.io/react' // Register our heading component for use in // the visual editor const Heading = props => ( <h1 className="my-heading">{props.title}</h1> ) Builder.registerComponent(Heading, { name: 'Heading', inputs: [{ name: 'title&# |