Design system for Cap Collectif
npm i @cap-collectif/ui
...
yarn add @cap-collectif/ui
import { Button, Heading } from '@cap-collectif/ui';
const App = () => (
<>
<Heading as="h1">Title</Heading>
<Button variant="primary">PRESS ME</Button>
</>
);
👉 Read the Storybook stories
📝 View the Changelog
$ git clone https://github.com/cap-collectif/ui.git
$ cd ui/
$ yarn
$ yarn storybook
The browser will launch automatically to http://localhost:6006
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature