App constructor
App({})
Creates a new instance of App.
The debug parameter is used to determine the debug mode of the library.
The target parameter is used to determine the target element where the
components will be rendered.
The children parameter is used to determine the children components that
Implementation
App({
this.debug,
this.target = "#app",
this.title = "Kitawi",
this.children,
this.onRender,
this.style,
this.className,
});