fuse-angular/src/app/main/apps/dashboards/project/project.component.ts
mustafahlvc c3e241c81c Layout Service created,
Starting the build navigation,
Some Components added for tests.
2017-07-08 19:12:52 +03:00

20 lines
302 B
TypeScript

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