Last active
February 4, 2023 23:39
-
-
Save andrewarosario/6cd12b95d6d8ae25d371b5b1653d93ce to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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