forge/arma/ui/apps/main/state.js
2026-03-07 13:20:43 -06:00

13 lines
322 B
JavaScript

(function () {
const RegistryApp = (window.RegistryApp = window.RegistryApp || {});
const { createSignal } = RegistryApp.runtime;
class RegistryStore {
constructor() {
[this.getView, this.setView] = createSignal("home");
}
}
RegistryApp.store = new RegistryStore();
})();