mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
spacing class helpers added(margin, padding), Normalize css added, Icon size class helpers added, slideInLeft, slideInRight animation added, Chat app almost completed.
20 lines
313 B
TypeScript
20 lines
313 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'fuse-chat-start',
|
|
templateUrl: './chat-start.component.html',
|
|
styleUrls : ['./chat-start.component.scss']
|
|
})
|
|
export class ChatStartComponent implements OnInit
|
|
{
|
|
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
}
|
|
|
|
}
|