Skip to content

Instantly share code, notes, and snippets.

@NikkiSiapno
Created July 4, 2020 08:21
Show Gist options
  • Select an option

  • Save NikkiSiapno/cd1b59f8d8ac6f2963dfb8d9a9507238 to your computer and use it in GitHub Desktop.

Select an option

Save NikkiSiapno/cd1b59f8d8ac6f2963dfb8d9a9507238 to your computer and use it in GitHub Desktop.
import React, { useRef } from "react"
const Example = () => {
const boxEl = useRef()
return (
<>
<div ref={boxEl}>
<h1>Hello world!</h1>
</div>
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment