0.1.1 • Published 5 years ago
purple-design-system v0.1.1
Get started
Purple Design System is a reusable component library that seeks to help designers put together a design portfolio.
Install
PDS components are written in React and it requires Storybook version 5.2-beta and up.
Add SDS to your project.
npm install --save TODO
Use
Import components you want into your UI
import { Button } from TODO
and use them like so
const example = () => (
<div>
<Button type="primary" onClick={() => 0}>Do something</Button>
</div>
)