Passing object as props to jsx

前端 未结 4 1429
傲寒
傲寒 2020-12-13 08:01

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\',         


        
4条回答
  •  感动是毒
    2020-12-13 08:35

    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:

    
    

提交回复
热议问题