im just curious here but is there any performance hit when using redux or mobx compared with native useState or context api? no matter how small example
// mobx code
@observable isLoading: boolean = false;
@action setLoading = () => {
loading = true;
}
// native react code
const [loading, setLoading] = useState<boolean>(false);
const setLoader = () => setLoading(true);
is there a perfomance difference if a component tries to access the loading state from each of the following code above? or am i just tripping lol