Skip to content

Instantly share code, notes, and snippets.

@alejovdev
Last active May 21, 2020 16:35
Show Gist options
  • Save alejovdev/a78dbe7c6c7fbe6a17ba1adfad00fedb to your computer and use it in GitHub Desktop.
Save alejovdev/a78dbe7c6c7fbe6a17ba1adfad00fedb to your computer and use it in GitHub Desktop.
import React, { useState, useLayoutEffect, useRef } from 'react'
function MyComponent() {
useLayoutEffect(() => {
function onWindowResize() {}
return () => {}
}, [])
return <div>Hi There</div>
}
export default MyComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment