Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Last active February 4, 2023 23:39
Show Gist options
  • Save andrewarosario/6cd12b95d6d8ae25d371b5b1653d93ce to your computer and use it in GitHub Desktop.
Save andrewarosario/6cd12b95d6d8ae25d371b5b1653d93ce to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-star-rating',
templateUrl: './star-rating.component.html',
providers: [
{
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => StarRatingComponent),
multi: true,
},
],
})
export class StarRatingComponent implements ControlValueAccessor { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment