1.0.13 • Published 4 years ago
msp-components v1.0.13
Components
Description
React UI components.
Installation
yarn add msp-componentsor
npm --save install msp-componentsAdditionally install the peer dependencies (if not present)
yarn add reactor
npm --save install reactUsage
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 storybookor
cd packages/components
npm run storybookThis will start a local server running Storybook with demos and documentation for all available components, avalaible on
http://localhost:60061.0.13
4 years ago