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