Reactjs – React doesn't rerender after ActionFunction
TL;DR: My React components doesn't rerender after a remix.run ActionFunction. I have a route with a form in which, when submitted, runs an ActionFunction. The ActionFunction then does something and returns, e.g., return json({ message: "Success!", status: 200 });. I…