#Installation


#Yarn

$ yarn add @hitechline/reactools@latest

OR


#NPM

$ npm install @hitechline/reactools@latest


#How to use ?
import * as Reactools from '@hitechline/reactools';

const Component = () => {
  return (
    <h1 className={Reactools.mergeClassNames('class1', 'class2')}>Component</h1>
  );
};