Skip to content

Instantly share code, notes, and snippets.

@thisiszoaib
Created January 5, 2021 05:10
Show Gist options
  • Save thisiszoaib/4b62ee237ed8909dc4f4e00b43982716 to your computer and use it in GitHub Desktop.
Save thisiszoaib/4b62ee237ed8909dc4f4e00b43982716 to your computer and use it in GitHub Desktop.
Chips 6
onChange!: (value: string[]) => void;
registerOnChange(fn: any): void {
this.onChange = fn;
}
propagateChange(value: string[]) {
if (this.onChange) {
this.onChange(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment