UNPKG

react-style-px-suffix-codemod

Version:

append px to shorthand values in style objects in react in prep for react 15 warning

9 lines (8 loc) 295 B
import React from 'react'; class Cool extends React.Component { render() { const style = { marginTop: -10, width: 10, flex: 1 }; const style2 = { height: 20, width: 20 }; return <div style={{fontSize: 10}}><div style={style}>Hello</div><div style={style2}>Hello</div></div>; } }