@mathongo/design-system
v1.5.0
Published
Design system for mathongo web application
Readme
MARKS Design System
Available Scripts
Build the library
yarn rollupPublish the library
yarn publishRun tests
yarn testRun storybook locally
yarn storybookBuild storybook
yarn build-storybookInstalling Package
yarn add https://github.com/Get-MARKS/design-system.gitCreating Components
yarn generate ComponentNameUsing Your Library
import React from "react";
import { Button } from "@mathongo/design-system";
function App() {
return <Button type="primary" size="medium" > Button <Button/>;
}
export default App;