1.0.1 • Published 5 years ago

first-component-lib v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

first-component-lib

Made with create-react-library

NPM JavaScript Style Guide

Install

npm install --save first-component-lib

Usage

import React, { Component } from 'react'

import { Button, Input } from 'first-component-lib'
import "first-component-lib/dist/index.css"

class Example extends Component {
  render() {
    return (
       <div>
        <Button  onClick={() => alert("clicked")}> Click Me</Button>
        <Input value="SAlmlar" onChange = { (event) => {}} style={{ height: 50 }} />
      </div>
    )
  }
}

License

MIT © ElmanAASTANOV