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