import { Style } from "@makeswift/runtime/controls"; import { ReactRuntime } from "@makeswift/runtime/react"; // Register your components here! function HelloWorld(props: { className?: string }) { return

Hello, world!

; } ReactRuntime.registerComponent(HelloWorld, { type: "hello-world", label: "Hello, world!", props: { className: Style({ properties: Style.All }), }, });