Caritas-Verein

Results 4 comments of Caritas-Verein

As for now, i use this method, which works fine for me 😊. ``` const codeRef = useRef(undefined) ... function clear() { if(codeRef.current.textInput[0]) codeRef.current.textInput[0].focus() codeRef.current.state.input[0] = "" codeRef.current.state.input[1] = ""...

@tarun-nagpal-github `import React, {useRef} from 'react'`

I think you don't need this library. You can just use `@react-leaflet/[email protected]` and the native `[email protected]`. In my example it works like this: ``` import { useLeafletContext } from '@react-leaflet/core'...

Thank you :-). After some time i came to this. Works a lot better, does not rerender so often and supports children for tooltips and popups. ``` import { createElementHook,...