DS
Size: a a a
ф
D
DS
Б
D
D
Б
c
ф
c
Б
const [store1, value1] = createAutoSubStore(...);
const [store2, value2] = createAutoSubStore(...);
const [store3, value3] = createAutoSubStore(...);
const [flagStore, flagValue] = createAutoSubStore(...);
const App = component(() => {
return <>
<div>{value1()}</div>
<div>{value2()}</div>
{flagValue()
? <div>{value3()}</div>
: <div>{value4()}</div>
}
</>
})
A
const [store1, value1] = createAutoSubStore(...);
const [store2, value2] = createAutoSubStore(...);
const [store3, value3] = createAutoSubStore(...);
const [flagStore, flagValue] = createAutoSubStore(...);
const App = component(() => {
return <>
<div>{value1()}</div>
<div>{value2()}</div>
{flagValue()
? <div>{value3()}</div>
: <div>{value4()}</div>
}
</>
})
Б
A
AO
Б
A
🦜
AO