mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
Merge pull request #424 from Pascalmh/prettier-control-value-accessor
chore: run prettier on files in control-value-accessor folder
This commit is contained in:
@@ -5,8 +5,9 @@ import { FeedbackFormComponent } from './feedback-form/feedback-form.component';
|
|||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [FeedbackFormComponent],
|
imports: [FeedbackFormComponent],
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
template: `<app-feedback-form
|
template: `
|
||||||
(feedBackSubmit)="apiCall($event)"></app-feedback-form>`,
|
<app-feedback-form (feedBackSubmit)="apiCall($event)"></app-feedback-form>
|
||||||
|
`,
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
apiCall(event: Record<string, string | null>): void {
|
apiCall(event: Record<string, string | null>): void {
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import { EventEmitter } from '@angular/core';
|
import { Component, EventEmitter, Output } from '@angular/core';
|
||||||
import { Output } from '@angular/core';
|
import {
|
||||||
import { Component } from '@angular/core';
|
FormControl,
|
||||||
import { Validators } from '@angular/forms';
|
FormGroup,
|
||||||
import { FormControl } from '@angular/forms';
|
ReactiveFormsModule,
|
||||||
import { FormGroup } from '@angular/forms';
|
Validators,
|
||||||
import { ReactiveFormsModule } from '@angular/forms';
|
} from '@angular/forms';
|
||||||
import { RatingControlComponent } from '../rating-control/rating-control.component';
|
import { RatingControlComponent } from '../rating-control/rating-control.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import { EventEmitter } from '@angular/core';
|
import { Component, EventEmitter, Output } from '@angular/core';
|
||||||
import { Output } from '@angular/core';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
standalone: true,
|
standalone: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user