README
Utils components
Install
npm install utils-components
yarn add utils-components
How to use
// Render IF :)
import { RenderIf } from 'react-components-utils';
const AwesomeComponent = () => {
return <RenderIf condition={salary === '120k'}>👨💻</RenderIf>;
};