mirror of
https://github.com/simon987/task_tracker.git
synced 2025-12-13 14:59:03 +00:00
More work on UI
This commit is contained in:
@@ -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() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user