16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-new-group',
|
|
templateUrl: './new-group.component.html',
|
|
styleUrls: ['./new-group.component.scss']
|
|
})
|
|
export class NewGroupComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|