const $titles = createStore(null).on(setTitle, (state, [comp, title]) => ({
...state,
[comp]: title
}));
forward({
from:
Gate1.state.map((s) => s.title),
to: setTitle.prepend((title) => ["Comp1", title])
});
forward({
from:
Gate2.state.map((s) => s.title),
to: setTitle.prepend((title) => ["Comp2", title])
});