fuse-angular/src/app/main/apps/dashboards/project/project.component.ts

20 lines
302 B
TypeScript
Raw Normal View History

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()
{
}
}