ipsos-components
Version:
Material Design components for Angular
22 lines (18 loc) • 544 B
text/typescript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {Component} from '@angular/core';
import {FocusMonitor} from '@angular/cdk/a11y';
({
moduleId: module.id,
selector: 'focus-origin-demo',
templateUrl: 'focus-origin-demo.html',
styleUrls: ['focus-origin-demo.css'],
})
export class FocusOriginDemo {
constructor(public fom: FocusMonitor) {}
}