Files
HomeMonitor/Display/src/app/laundry/laundry.component.ts
2019-09-10 19:39:06 -04:00

16 lines
274 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-laundry',
templateUrl: './laundry.component.html',
styleUrls: ['./laundry.component.scss']
})
export class LaundryComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}