npm i -S @pluralsh/design-system
Import { Alert } from '@pluralsh/design-system'
// ...
return (
<Alert
severy="success"
title="Wouhou!"
>
You installed @pluralsh/design-system correcly
</Alert>
)
npm i && npm start
and view the Storybook at http://localhost:6006
Checklist for creating a new component:
- Does it have proper type definitions?
- Does it have prop types?
- Can it pass a ref with forwardRef?
- Does it have a story in the Storybook?
We use semantic pr conventions for all prs, if you want a commit to be present in a release, be sure to prefix its commit message with either feat:
or fix:
. Use fix!:
or feat!:
for breaking changes to trigger a major version release.
MIT