UNPKG

@catho/quantum-storybook-ui

Version:

A **Design System** is the complete set of design standards, documentation, and principles along with the toolkit (UI patterns and code components) to achieve those standards. Over time, these 'systems' are growing in popularity - a very popular one is [Q

14 lines (11 loc) 227 B
import React from 'react'; import Ui from './sub-components/Ui'; import { GlobalStyle } from '@catho/quantum'; const UiStyle = storyFn => ( <> <GlobalStyle /> <Ui /> {storyFn()} </> ); export default UiStyle;