We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
click-events-have-key-events
1 parent 743168b commit d32edacCopy full SHA for d32edac
docs/rules/click-events-have-key-events.md
@@ -16,7 +16,7 @@ This rule takes no arguments.
16
<div onClick={() => {}} onKeyUp={this.handleKeyUp} />
17
<div onClick={() => {}} onKeyPress={this.handleKeyPress} />
18
<button onClick={() => {}} />
19
-<div onClick{() => {}} aria-hidden="true" />
+<div onClick={() => {}} aria-hidden="true" />
20
```
21
22
### Fail
0 commit comments