mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-12-21 08:37:08 +00:00
19 lines
439 B
TypeScript
19 lines
439 B
TypeScript
import { Component, ViewEncapsulation } from '@angular/core';
|
|
import { fuseAnimations } from '@fuse/animations';
|
|
|
|
@Component({
|
|
selector : 'confirmation-required-classic',
|
|
templateUrl : './confirmation-required.component.html',
|
|
encapsulation: ViewEncapsulation.None,
|
|
animations : fuseAnimations
|
|
})
|
|
export class ConfirmationRequiredClassicComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
}
|