Skip to content

Commit 45bb152

Browse files
authored
Merge pull request #2713 from joooda/patch-4
Fix typo in code
2 parents bc5bc92 + fe4bcc4 commit 45bb152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/10/en/part10d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ The second very important React Native Testing Library concept is firing events.
187187
```javascript
188188
import { useState } from 'react';
189189
import { Text, TextInput, Pressable, View } from 'react-native';
190-
import { render, fireEven, screen } from '@testing-library/react-native';
190+
import { render, fireEvent, screen } from '@testing-library/react-native';
191191

192192
const Form = ({ onSubmit }) => {
193193
const [username, setUsername] = useState('');

0 commit comments

Comments
 (0)