@alboompro/boom-components

React UI library containing a set of high quality components for building rich, interactive user interfaces in Alboom applications

Usage no npm install needed!

<script type="module">
  import alboomproBoomComponents from 'https://cdn.skypack.dev/@alboompro/boom-components';
</script>

README

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.