import {html} from 'htm/preact'; import {Setting, SettingProps, TRXComponent} from '../..'; export function AutocompleteSetting(props: SettingProps): TRXComponent { return html`<${Setting} ...${props}>

Adds autocompletion in textareas for user mentions (starting with${' '} @) and groups (starting with ~).

`; }