at
Size: a a a
at
DK
DK
AK
l
l
l
A
AK
l
l
import {createStore, createStoreObject} from 'effector'
const text = createStore('')
const length = createStore(0)
const store = createStoreObject({
text,
length,
})
AK
l
l
import store from './singleStateOfTruth'
const text = store.map(state => state.text)
import {combine} from 'effector'
import {fooStore, barStore} from './store'
const store = combine(fooStore, barStore, (foo, bar) => ({
foo, bar,
}))
AK
AK
DZ
DZ
l
AK