UNPKG

create-kf-component

Version:

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

14 lines (11 loc) 283 B
import { DefaultLandingComponent } from "./landing/index.jsx"; function App() { return ( <div className='rootDiv'> {/* This is a default placeholder component, remove this and add your own component */} <DefaultLandingComponent /> </div> ); } export default App;