13 lines
322 B
JavaScript
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();
|
|
})();
|