### Navigate to Getting Started Guide Source: https://github.com/baloise/design-system/blob/next/docs/src/welcome.mdx Provides a way to navigate to the 'Getting Started' guide for development, typically initiated by clicking a button. ```javascript onClick={() => navigate({ title: 'Development/Getting Started' })} ``` -------------------------------- ### Start Development Servers Source: https://github.com/baloise/design-system/blob/next/DEVELOPMENT.md Start the core components development server or the Storybook documentation server. ```bash npm start # Core components dev server (http://localhost:3333) npm run docs # Storybook documentation (http://localhost:6006) ``` -------------------------------- ### Basic Progress Bar Example Source: https://github.com/baloise/design-system/blob/next/docs/src/components/progress-bar/1-Overview.mdx Displays a standard progress bar. Use this as a starting point for basic implementation. ```javascript import { Controls, Markdown, Meta } from '@storybook/addon-docs/blocks' import { Banner, CanvasWithCodePen, BannerTabs, ComponentPublicMethods, ComponentTabs, ComponentLead, Footer } from '../../../.storybook/blocks' import * as ProgressBarStories from './progress-bar.stories' import { PROGRESS_BAR_DOC_CONFIG, getProgressBarTabs } from './progress-bar.doc-config' , }, ]} />