mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
20 lines
302 B
TypeScript
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()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|