Concept Flow - Props as read-only data
Parent Component
Pass Props to Child
Child Component Receives Props
Child Uses Props to Render
Child Cannot Modify Props
If Child Needs Change -> Use State or Callbacks
Props flow from parent to child as fixed data. Child can read but not change props directly.