I have an object contains multiple common key-value props, that I want to pass on to some jsx. Something like this:
const commonProps = {myProp1: \'prop1\',
Is this possible?
Yes, why you think its not possible, but the way you are sending is not correct.
Meaning of is:
So if you don't specify any value by default it will take true. To pass the object you need to write it like this:
const commonProps = {myProp1: 'prop1',myProp2: 'prop2'};
Update:
If you have an object and wants to pass all the properties as separate prop, write it like this: