No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

Developing components for the library

Firstly, clone the project locally:

git clone https://github.com/adnicolae/ucc-design.git

Install dependencies:

npm install

Run the workspace

Application:

npm run start

Storybook:

npm run storybook

Development process

Files can be found in src/design-system. After a component is implemented, it should be exported in src/index.js. Common aliases include Utils and Components.

Publishing changes

Create a new branch for your work:

git checkout -b {{ BRANCH_NAME }}

Please prefix your branch name with either feature/bugfix.

git commit -m "{{YOUR_COMMENT}}"
git push