Conditionally add attributes to React components

Add attributes in React component conditionally.

🙋‍♂️ Shubham Verma    🗓 May 10, 2021


Conditionally add attributes to React components


I n React, its often required to add attributes conditionally. It is very easy in React. For certain attributes, React is intelligent enough to omit the attribute if the value you pass to it is not truthy. This is actually very useful, especially when adding many properties conditionally. In this article we will learn how we can add attributes in React component conditionally.

Prepare props to conditionally add attributes to react components

The below code will add the props dynamically in the component.

Use props to conditionally add attributes to react component::

This is how, we can use the props.

Another way to conditionally add attributes to react component:


Depending on the condition, either {Key: "Value"} or {} will be returned. The spread operator will then spread the properties of the returned object to Button component. In the falsy case, since no properties exist on the returned object, nothing will be passed to the component.

The only small difference is that in the second example the inner component SomeComponent's props object will have a key bsStyle with a value of undefined.



Support our IDKBlogs team

Creating quality content takes time and resources, and we are committed to providing value to our readers. If you find my articles helpful or informative, please consider supporting us financially.

Any amount (10, 20, 50, 100, ....), no matter how small, will help us continue to produce high-quality content.

Thank you for your support!




Thank you

I appreciate you taking the time to read this article. The more that you read, the more things you will know. The more that you learn, the more places you'll go. If you’re interested in Node.js or JavaScript this link will help you a lot.

If you found this article is helpful, then please share this article's link to your friends to whom this is required, you can share this to your technical social media groups also. You can follow us on our social media page for more updates and latest article updates.
To read more about the technologies, Please subscribe us, You'll get the monthly newsletter having all the published article of the last month.