input
textarea
button
contenteditable
const { client } = useVeltClient(); useEffect(() => { if (client) { const selectionElement = client.getSelectionElement(); selectionElement.enableLiveSelection(); selectionElement.disableLiveSelection(); } }, [client]);
Was this page helpful?