import {type JSX} from "preact"; import {Setting, type SettingProps} from "./index.js"; export function AutocompleteSetting(props: SettingProps): JSX.Element { return (

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

); }