2.0.1 • Published 10 months ago

reusable-button-package v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

React button reusable

// with npm
npm i reusable-button-package



## Usage

Here is a quick example to get you started, **it's all you need**:

```jsx

import React from 'react';
import Button from 'reusable-button-package';

const App = () => {
  const handleClick = () => {
    alert('Button clicked!');
  };

  return (
    <div>
      <h1>Test YourButton Component</h1>
      <Button onClick={handleClick}>Click Me</Button>
    </div>
  );
};

export default App;
2.0.1

10 months ago

1.0.0

10 months ago