export class ConfigSettingsGroup { constructor ( { groupId, name, configSettings, }, ) { this._groupId = groupId; this._name = name; this._configSettings = configSettings; this._configSettings .forEach(configSetting => configSetting.setGroupId(this._groupId)); } get groupId () { return this._groupId; } render (rdState, {isLast = false} = {}) { const wrpRows = ee`
`; ee`