export default { title: "DSS/Welcome", tags: ["autodocs"], }; export const GettingStarted = { render: () => { const div = document.createElement("div"); div.innerHTML = `

Design System Server

Welcome to DSS Storybook. This is your interactive component library.

Getting Started

  1. Go to the Admin UI to configure your design system
  2. Import components from Figma or your component library
  3. Click "Initialize Storybook" to generate component stories
  4. Browse your components in the sidebar
No components loaded yet

Initialize your design system from the Admin UI to populate this Storybook.

DSS v1.0.0 | Open Admin UI

`; return div; }, };