@gechiui/components
Version:
UI components for GeChiUI.
24 lines (18 loc) • 499 B
Markdown
<div class="callout callout-alert">
This feature is still experimental. “Experimental” means this is an early implementation subject to drastic and breaking changes.
</div>
`Divider` is a layout component that separates groups of related content.
```jsx
import { Divider, FormGroup, ListGroup } from '@gechiui/components/ui';
function Example() {
return (
<ListGroup>
<FormGroup>...</FormGroup>
<Divider />
<FormGroup>...</FormGroup>
</ListGroup>
);
}
```