From 44c437c55eeb56d741e54bcc77e823849c22b313 Mon Sep 17 00:00:00 2001 From: Luke Brown Date: Thu, 12 Nov 2020 11:28:40 +0000 Subject: [PATCH] Fixed evenData to eventData in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3967086..b4fe799c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Use the hook and set your swipe(d) handlers. ```jsx const handlers = useSwipeable({ - onSwiped: (eventData) => console.log("User Swiped!", evenData), + onSwiped: (eventData) => console.log("User Swiped!", eventData), ...config, }); return
You can swipe here
;