Skip to content

Commit fe4bcc4

Browse files
authored
Fix typo in code
1 parent 52370b7 commit fe4bcc4

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)