mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-19 23:02:33 +00:00
14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'docs-introduction',
|
|
templateUrl: './introduction.component.html',
|
|
styleUrls : ['./introduction.component.scss']
|
|
})
|
|
export class DocsGettingStartedIntroductionComponent
|
|
{
|
|
constructor()
|
|
{
|
|
}
|
|
}
|