I'm trying to access attach references to each paragraph/heading in react-markdown. But I can't figure out how to add a ref to c below.
const children = Array.from(div.children)
children?.forEach((c, i) => {
// c = <p>...</p> or <h1>...</h1>
// add ref from useRef to c
})