diff --git a/guide/english/react/props/index.md b/guide/english/react/props/index.md index c8b2af06cf..e710702125 100644 --- a/guide/english/react/props/index.md +++ b/guide/english/react/props/index.md @@ -2,4 +2,38 @@ title: Props --- ### What are the props? -Props (short for properties) are the data or functions passed into a component. They are immutable (read-only). \ No newline at end of file + +Props (short for properties) are the data or functions passed into a component. They are immutable (read-only). + +To illustrate how props are used in components, see the following example: + +```javascript +const props = { + name: "john", + age: 33, + country: "Canada" +}; + +const PropTest = (props) => { + return( +