DS
user-domain/Rule/Rule => domain/Rule/MessageSize: a a a
DS
user-domain/Rule/Rule => domain/Rule/MessageDS
DS
import { createEvent, createStore } from 'effector';
import { createBrowserHistory, Location } from 'history';
export const history = createBrowserHistory();
export const locationUpdated = createEvent<Location>();
export const $location = createStore<Location>(history.location);
export const $search = $location.map((x) => x.search);
history.listen((location) => {
locationUpdated(location);
});
$location.on(locationUpdated, (_, payload) => payload);m
DS
NF
DS
DS
NF
DS
NF
NF
🚀🚀
🚀🚀
🚀🚀
🚀🚀
🚀🚀
🚀🚀
🚀🚀
c