Created
July 4, 2020 08:21
-
-
Save NikkiSiapno/cd1b59f8d8ac6f2963dfb8d9a9507238 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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