mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-16 21:35:13 +00:00
17 lines
299 B
TypeScript
17 lines
299 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'simple-fullwidth',
|
|
templateUrl: './fullwidth.component.html',
|
|
styleUrls : ['./fullwidth.component.scss']
|
|
})
|
|
export class SimpleFullWidthComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
}
|