1.0.3 • Published 4 years ago

react-ui-bits v1.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

REACT-UI-BITS

React components for faster and easier web development. For components usage visit the site

Installation

//Using npm
npm i react-ui-bits

//Using yarn
yarn add react-ui-bits

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import { CheckBox } from react-ui-bits

function App() {
  return (
    <CheckBox name="gender" value="male" label="Male" checked={true} />
  );
}

ReactDOM.render(<App />, document.getElementById('app'));

Roadmap

Since this is a test component library, it have very few components. Will add more useful components in future.