diff --git a/src/content/10/en/part10b.md b/src/content/10/en/part10b.md index cff94915f7..77c0985419 100644 --- a/src/content/10/en/part10b.md +++ b/src/content/10/en/part10b.md @@ -599,7 +599,7 @@ That's it! The last Route inside the Routes is for catching pa We will soon implement a form, that a user can use to sign in to our application. Before that, we must implement a view that can be accessed from the app bar. Create a file SignIn.jsx in the components directory with the following content: ```javascript -import Text from './Text'; +import { Text } from 'react-native'; const SignIn = () => { return The sign-in view;