czroo
czroo

Reputation: 157

How to update button width without css ReactJs

I trying to update the width size of to 50% without using css, but there is error when I use the way below

<button className="btn-something" style={ {width:50%} }>Decline</button>

What is the correct way for the style=

Upvotes: 0

Views: 28

Answers (1)

Viet
Viet

Reputation: 12787

Value in style inline object must be a string:

style={{ width: "50%" }}>

Upvotes: 1

Related Questions