Add some initial web UI

This commit is contained in:
2019-09-10 19:39:06 -04:00
parent 807d6cb5b5
commit a32e65de1c
51 changed files with 14219 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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() {
}
}