get_jsx tool converts the canvas HTML into a JSX string that you can drop directly into a React project. It offers two output modes to match your project’s styling approach: "tailwind" mode (the default) preserves Tailwind class names in className props and drops redundant style props for properties that Tailwind already covers, while "inline" mode converts every CSS property to a JSX style object — useful for environments without Tailwind configured.
When you provide a componentId, the output is scoped to that component’s subtree. Omitting it returns JSX for the entire canvas as a single component fragment.
Parameters
string
Scope the JSX output to a specific component and its descendants. If omitted, the entire canvas is converted. Obtain component IDs from
get_tree or get_selection.string
default:"tailwind"
Controls how CSS styles are represented in the JSX output.
"tailwind"— preservesclassNameattributes and removesstyleprops for properties expressible as Tailwind utilities (padding, margin, color, background-color, width, height, display, flex-direction). This is the default."inline"— converts all CSS properties to astyle={{ }}object. Use this when your target project does not have Tailwind configured.
Response
string
required
A JSX string representing the canvas or component subtree. The output is a JSX fragment or element — not a complete component file. Wrap it in a function component before saving.
Example
In
"tailwind" mode, only a specific set of CSS properties are converted to Tailwind utilities: padding, margin, color, background-color, width, height, display, and flex-direction. Other properties remain as inline styles even in tailwind mode.