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) 311 B
import React from 'react'; class Cool extends React.Component { render() { const style = { height: "10px", width: "10px", flex: 1 }; const style2 = { height: "20px", width: "20px" }; return <div style={{fontSize: "10px"}}><div style={style}>Hello</div><div style={style2}>Hello</div></div>; } }