1.0.13 • Published 2 years ago

msp-components v1.0.13

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

Components

Description

React UI components.

Installation

yarn add msp-components

or

npm --save install msp-components

Additionally install the peer dependencies (if not present)

yarn add react

or

npm --save install react

Usage

import { Button } from 'msp-components';

const Example = () => {
  return (
    <div>
      <Button variant="primary">Primary Button</Button>
    </div>
  );
};

export default Example;

Available components

To check avaliable components, please run the Storybook:

cd packages/components
yarn storybook

or

cd packages/components
npm run storybook

This will start a local server running Storybook with demos and documentation for all available components, avalaible on

http://localhost:6006