16 lines
276 B
TypeScript
16 lines
276 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'of-member-modify',
|
|
templateUrl: './modify.component.html',
|
|
styleUrls: ['./modify.component.scss']
|
|
})
|
|
export class ModifyComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|