How can I add a Prompt router component to forms?
I want to add a Prompt behaviour on page leave (I'm using React-hook-form) I've tried the Prompt component but it requires to be rendered inside a Router. How can I do that with refine?
Note: you can ask me a follow up question by @ mentioning me again 
PromptPromptPromptPromptimport { Refine } from "@pankod/refine";
import routerProvider from "@refinedev/react-router-v6";
const App: React.FC = () => {
return <Refine routerProvider={routerProvider} />;
};