Skip to content

Instantly share code, notes, and snippets.

View slavanga's full-sized avatar

Sergio Lavanga slavanga

View GitHub Profile
@slavanga
slavanga / withEscTap.tsx
Last active February 8, 2024 12:48
Framer Override to trigger tap event when the esc key is pressed.
export function withEscTap(Component): ComponentType {
return (props) => {
const { onTap } = props
useEffect(() => {
const onKeyDown = (e) => {
if (e.key === "Escape") {
onTap()
}
}