I have a component which requires confirmation before navigating to another component. There is a Prompt component in react router
which enables to ask confirmation before navigating to another component but I can't find any similar solution in reach-router
. Is there any way I can ask the user for confirmation before they navigate to another route and cancel the navigation if the user responds no?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)
You could show a modal from the navigation link, and have the buttons on the modal navigate or cancel.