UNPKG

create-kf-component

Version:

create-kf-component is a cli tool that scaffolds Javascript based custom component projects that seamlessly integrate into Kissflow.

15 lines (11 loc) 286 B
import React from "react"; import { createRoot } from "react-dom/client"; import App from "./App.jsx"; import { SDKWrapper } from "./sdk/index.js"; import "./index.css"; const Root = createRoot(document.getElementById("root")); Root.render( <SDKWrapper> <App /> </SDKWrapper> );