@xarc/react
v1.0.6
Published
xarc web app platform support for React framework
Downloads
43
Keywords
Readme
@xarc/react
xarc web app platform support for React framework.
Example:
index.ts
:
import { declareSubApp } from "@xarc/react";
const subAppDef = declareSubApp({
name: "test",
getModule: () => import("./subapp-hello")
});
subapp-hello.ts
:
export const subapp = {
Component: () => {
// UI component
}
};