factory.ts 226 B

123456789101112
  1. import { RxValue } from "./RxValue";
  2. import { HistoryController } from "./history";
  3. const History = new HistoryController();
  4. function createComponent(key: string, h?: HistoryController) {
  5. if (!h ) h = History;
  6. }