mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
+ simple layout 3 tweaks + added modules to all pages + moved some stuff to the SharedModule from AppModule + typography page structure
18 lines
314 B
TypeScript
18 lines
314 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'fuse-typography',
|
|
templateUrl: './typography.component.html',
|
|
styleUrls : ['./typography.component.scss']
|
|
})
|
|
export class TypographyComponent implements OnInit
|
|
{
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
}
|
|
}
|