Posts by ljsb • 46 points
3 posts
-
0
votes2
answers54
viewsA: Form sent and another page display at the same html click
If I understand your question correctly, you need to submit the data for a certain route however, redirect the user to another in the success of the submission, right? If so, I think the appropriate…
-
0
votes2
answers61
viewsA: Positioning of a div
There are different ways to do what you need, some of them: You can rearrange the elements according to the device by making use of the property order flexbox; You can use the utilities of display…
-
3
votes1
answer1589
viewsA: React fetch() POST
You cannot be assured that both requests will be resolved at the same time as they are in different components - unless they are executed in parallel through a saga, for example. But you can ensure…