Answers for "style components react"

4

styled componets npm

npm i styled-components
Posted by: Guest on August-14-2020
0

inline style react

// Typical component with state-classes
<ul className="todo-list">
  {this.state.items.map((item,i)=>({
<li 
 className={classnames({ 'todo-list__item': true, 'is-complete': item.complete })}>
            {item.name}
</li>
 })}
</ul>

// Using inline-styles for state
<li className='todo-list__item'
 style={(item.complete) ? styles.complete : {}} />
Posted by: Guest on July-05-2020

Browse Popular Code Answers by Language