0.1.0 • Published 2 years ago

ui_leg_v1 v0.1.0

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

UI-LEG

Simple REACT components library i made to allow me to store my components and reuse it in my REACT projects.

Installation

npm install ui_leg_v1

Use

import React from 'react';
import { Button } from 'ui-leg';

function App() {
  return (
    <Button size="medium" color="RedButton" />
  );
}

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