Settings
Plugin config
import { Plugin } from '@root'
const {
GUI
} = Plugin
class Settings extends Plugin.Settings {
plugin() {
return(
<>
<GUI.ConfigInput
name={'username'}
ref={refs => this.handleRefs(refs, 'username')}
/>
<GUI.ConfigPassword
name={'password'}
ref={refs => this.handleRefs(refs, 'password')}
/>
</>
)
}
}
export {
Settings
}Application config
Last updated