mirror of
https://github.com/rio-labs/rio.git
synced 2026-01-05 12:49:48 -06:00
14 lines
366 B
TypeScript
14 lines
366 B
TypeScript
import { ComponentBase, ComponentState } from './componentBase';
|
|
|
|
export type SeparatorListItemState = ComponentState & {
|
|
_type_: 'SeparatorListItem-builtin';
|
|
};
|
|
|
|
export class SeparatorListItemComponent extends ComponentBase {
|
|
state: Required<SeparatorListItemState>;
|
|
|
|
createElement(): HTMLElement {
|
|
return document.createElement('div');
|
|
}
|
|
}
|