fe
Size: a a a
fe
c
П
fe
A
const domain = createDomain();
domain.onCreateStore(store => store.reset(reset));
const store = domain.store(1)
const store2 = domain.store(2)
ф
c
DS
const foo = 0,
bar = 1,
baz = 2
const foo = 0
const bar = 1
const baz = 2
fe
A
DS
fe
🚀🚀
const widgetDomain = createDomain()
const DashboardGate = createGate()
widgetDomain.onCreateStore(store => {
store.reset(DashboardGate.close)
})
const fooWidget = widgetDomain.createStore(null)
const Dashboard = () => {
useGate(DashboardGate)
return <div>dashboard</div>
}
DS
fe
DS
ф
ei
A
AO