Browse Source

Type fix 'Diffrent' ➡️ 'Different' (#2215)

Type fix 'Diffrent' ➡️ 'Different'
main
Arihant Verma 5 years ago
committed by Sunil Pai
parent
commit
4559e1c20e
  1. 2
      content/docs/testing-recipes.md

2
content/docs/testing-recipes.md

@ -393,7 +393,7 @@ it("changes value when clicked", () => {
});
```
Diffrent DOM events and their properties are described in [MDN](https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent). Note that you need to pass `{ bubbles: true }` in each event you create for it to reach the React listener because React automatically delegates events to the document.
Different DOM events and their properties are described in [MDN](https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent). Note that you need to pass `{ bubbles: true }` in each event you create for it to reach the React listener because React automatically delegates events to the document.
> Note:
>

Loading…
Cancel
Save