UNPKG

@create-figma-plugin/ui

Version:

Production-grade Preact components that replicate the Figma UI design

8 lines 252 B
import '!../css/base.css'; import { h, render as preactRender } from 'preact'; export function render(Plugin) { return function (rootNode, props) { preactRender(h(Plugin, { ...props }), rootNode); }; } //# sourceMappingURL=render.js.map