Skip to content

andikhadian/component-library

Repository files navigation

React Component Library

Explore the Components

Table of Contents

🚀 Getting Started

Install the package using npm or yarn

yarn add @andikhadian/component-library

or

npm install @andikhadian/component-library

Run storybook

npm run storybook

Run the Unit tests

npm run test

☕ Usage

  import { Button } from "@andikhadian/component-library";

  const App = () => {
    return (
      <div>
        <Button>Hello Button</Button>
      </div>
    );
  };

  export default App;

🌍 Browser Support

Chrome Firefox IE Opera Safari
Chrome Firefox Microsoft Edge Opera Safari

🍫 Examples & Documentation

For more thorough examples and the API details visit the storybook

🤝Contributing

Contributions, ideas and PR's are welcome!

  1. Fork it
  2. Create your feature branch (git checkout -b new-feature)
  3. Commit your changes (git commit -am 'Add feature')
  4. Push to the branch (git push origin new-feature)
  5. Create a new Pull Request