UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

16 lines (14 loc) 511 B
import React, { useMemo } from "react"; import { RelatedComponent } from "vibe-storybook-components"; import Chips from "../../../../components/Chips/Chips"; export const ChipsDescription = () => { const component = useMemo(() => <Chips label="This is a chip" readOnly />, []); return ( <RelatedComponent component={component} title="Chip" href="/?path=/docs/data-display-chips--docs" description="Compact elements that represent an input, attribute, or action." /> ); };