React Props Explained 💡 #reactjs #learnreactjs #reactjstutorial #reactjscourse #reactjsforbeginners

preview_player
Показать описание


📣 Follow Coding in Flow on social media:
Рекомендации по теме
Комментарии
Автор

Keep doing the good work brother. Blessings 💪🏽

dami
Автор

I feel so silly this whole time i thought it was called props because they were arguments that 'propogated' down to all the components in your app
Cool video! I started subscribing to you the other day when I watched the other video about using suspense

stuartallen
Автор

More info for beginners:
The third special prop is `children`. It's not internally used like key and ref, but it allows a different syntax for passing data through it that's reserved to this prop name. Instead of
<MyComponent children="Hello" />
you can do
<MyComponent>
Hello
</MyComponent>
They both function exactly the same.

Noam-Bahar