Warning
This is an internal project, and is not intended for public use. No support or stability guarantees are provided.
A simple component that displays a title and optional children.
| Prop | Type | Description |
|---|---|---|
| title | | The title to display |
| disabled | | Whether the component is disabled |
| children | | Child elements |
A simple component that displays a title and optional children.
| Prop | Type | Description |
|---|---|---|
| title | | The title to display |
| disabled | | Whether the component is disabled |
| children | | Child elements |
import * as React from 'react';
import { TypesComponent as ComponentTypes } from './types';
export function TypesComponent() {
return (
<div>
<h3>ComponentRoot</h3>
<ComponentTypes.Root />
<h3>ComponentPart</h3>
<ComponentTypes.Part />
</div>
);
}