react-style-px-suffix-codemod
Version:
append px to shorthand values in style objects in react in prep for react 15 warning
10 lines (9 loc) • 360 B
JavaScript
import React from 'react';
class Cool extends React.Component {
render() {
const style = { height: "10px", width: "10px", flex: 1 };
const style2 = { height: "20px", width: "20px" };
const style3 = {fontSize: "10px", ...style1, ...style2};
return <div style={style3}><div style={style}>Hello</div><div style={style2}>Hello</div></div>;
}
}