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