diff --git a/guide/english/react-native/props/index.md b/guide/english/react-native/props/index.md
index 2e3a954bab..4f40e45281 100644
--- a/guide/english/react-native/props/index.md
+++ b/guide/english/react-native/props/index.md
@@ -34,7 +34,7 @@ This also works the same way in functional components:
// in functional components, props will be received as a parameter 'props'
const Header = (props) => {
return (
- {props.title}
+ {props.text}
);
};