mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-27 02:23:10 +00:00
12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
/** @title Form field with hints */
|
|
@Component({
|
|
selector : 'form-field-hint-example',
|
|
templateUrl: 'form-field-hint-example.html',
|
|
styleUrls : ['form-field-hint-example.css']
|
|
})
|
|
export class FormFieldHintExample
|
|
{
|
|
}
|