A UI library used by Alboom products, built with React.
yarn add @alboompro/boom-components
npm install @alboompro/boom-components --save
import Button from "@alboom/boom-components/general/button";
const MyComponent = ({ btnLabel }) => {
return (
<div>
<Button>{btnLabel}</Button>
</div>
);
};
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.