Version 2.13.0
- support multiple store sync
createStore({
yourDetail, // it's an object of your state { firstName: '', lastName: '' }
}, {
syncStores : [
{
externalStoreName: 'externalStoreName',
transform: ({ externalStoreData, currentStoreData }) => {
return { ...externalStoreData, ...currentStoreData };
},
}
]
})