Convert css string to React Native
!author 
> Convert css string to React Native
css-to-rn converts your css style string to React Native. It does not support interpolations so you cannot change styles dynamically based on props.
```
npm install css-to-rn
or if you use yarn
``
yarn add css-to-rn
This package depends on react-native so make sure you've installed it.
`js
import React from 'react';
import { Text, View } from 'react-native';
import cssToRn from 'css-to-rn';
const styles = cssToRn(
flex: 1; background-color: hotpink; align-items: center; justify-content: center;
);
class App extends React.Component {
render() {
return (
);
}
}
``
MIT