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

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

`; }