Skip to content

alboompro/boom-components

Repository files navigation

Boom Components

A UI library used by Alboom products, built with React.

Install

yarn add @alboompro/boom-components
npm install @alboompro/boom-components --save

How to use

import Button from "@alboom/boom-components/general/button";

const MyComponent = ({ btnLabel }) => {
  return (
    <div>
      <Button>{btnLabel}</Button>
    </div>
  );
};

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Boom Components.