@xarc/react
v2.0.0
Published
xarc web app platform support for React framework
Downloads
55
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
}
};