Skip to content

useRequestClose

The useRequestClose hook returns a function that asks the host to dismiss the view. Use it when the user has finished a flow and you want to return them to the conversation.

import { useRequestClose } from "@usefractal/frac/web";
function DoneButton() {
const requestClose = useRequestClose();
return (
<button onClick={() => requestClose()}>
Done
</button>
);
}