This project is the storybook code for our Confetti design system.
First, clone this project. We use git submodules to have the confetti-ds' source code in a separate repo, so you'll need to pass the --recursive
flag.
git clone --recursive [email protected]:labcodes/confetti-storybook.git
After that, you'll need to install this project's dependencies, as well as the confetti-ds' own dependencies.
# installs the storybook's dependencies
npm i
cd confetti-ds
# installs the design system's dependencies
npm i
Finally, go back to the root folder and start the development server.
cd ..
npm start