From fae695475ecd83c8e7401ae5e944728a1e34e8be Mon Sep 17 00:00:00 2001
From: Oshin <26878263+myverdict@users.noreply.github.com>
Date: Thu, 17 Apr 2025 07:57:02 -0400
Subject: [PATCH] Update part10b.md
updated code block to the right import
---
src/content/10/en/part10b.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;