More work on UI

This commit is contained in:
simon987
2019-01-23 19:38:33 -05:00
parent cbd32daf02
commit 1d656099f5
31 changed files with 288 additions and 131 deletions

View File

@@ -0,0 +1,20 @@
import {Component, OnInit} from '@angular/core';
import {Project} from "../models/project";
@Component({
selector: 'app-create-project',
templateUrl: './create-project.component.html',
styleUrls: ['./create-project.component.css']
})
export class CreateProjectComponent implements OnInit {
private project = new Project();
constructor() {
this.project.name = "test"
}
ngOnInit() {
}
}