mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
16 lines
274 B
TypeScript
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() {
|
|
}
|
|
|
|
}
|