Last active
September 25, 2020 19:13
-
-
Save chadspencer/3178805a2acac2ed11b038097f64403a 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
getHeaderHeight() { | |
const element = this.refWrapper.current.querySelector('th'); | |
const height = element.offsetHeight; | |
this.refWrapper.current.style.setProperty('--header-height', height + 'px'); | |
}; | |
onResize() { | |
getHeaderHeight(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment