You are on page 1of 1

Props

Changes from OUTSIDE a Component (data passed into component)

“prop” name <AllPosts> Component

<Post title="My Post Title" />

“prop” value

“prop” name
<Post> Component
Has to match!
<h1>{props.title}</h1>

Argument passed to Component Function

In class-based Components, it’s this.props...

You might also like