You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
580 B
22 lines
580 B
import { Component, OnInit, Input } from '@angular/core'; |
|
import { NzModalRef } from 'ng-zorro-antd/modal'; |
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
import { HttpClient } from '@angular/common/http'; |
|
import { TreeService } from 'src/app/service/tree.service'; |
|
|
|
@Component({ |
|
selector: 'app-apply-look', |
|
templateUrl: './apply-look.component.html', |
|
styleUrls: ['./apply-look.component.scss'] |
|
}) |
|
export class ApplyLookComponent implements OnInit { |
|
|
|
@Input() data?: any; |
|
validateForm!: FormGroup; |
|
constructor() { } |
|
|
|
ngOnInit(): void { |
|
} |
|
|
|
|
|
}
|
|
|