Event Propagation
showChildDocumentation = (e: KeyboardEvent) => {
console.log('show child doc')
e.stopPropagation()
} showChildDocumentation = () => {
console.log('show child doc')
return false
}Last updated
Was this helpful?