UNPKG

@multinite_official/multiui

Version:

The first and only Component Framework.

8 lines 391 B
import { jsx as _jsx } from "react/jsx-runtime"; const createButton = createComponent( /* some code to create the button component */); createButton.displayName = "Button"; const Button = createButton(({ props, slots, helpers }) => { return (_jsx(slots.wrapper, { children: _jsx(slots.base, { ...props }) })); }); function createButton(cb) { } //# sourceMappingURL=createComponent.js.map