[react-native-web] Pass className property when style property is passed.
npm install babel-plugin-react-native-web-pass-classnamePass className property whenever style is passed through.
It's useful when writing reusable components for react-native-web
and when using react-native libs which were not optimized to also work for react-native-web.
Input:
``js`
const Foo = (props) =>
/>
Output:
`js``
const Foo = (props) =>
className={props.className}
/>
MIT
(c) Decision Mapper - http://decisionmapper.com