Promptles
React & Frontend

Props

beginner

Definition

Short for 'properties.' Props are the bits of information you hand to a building block when you use it, a button's label, a card's title, a profile's avatar, to tell it what to show this time. The block itself can't change them; they come from outside.

In the wild

A 'badge' building block accepts two props: a number to display and a color. On a notifications icon, you hand it the number 7 and the color red. On a friend list, you hand the same block the number 12 and the color blue. Same block, different props.

More from React & Frontend