mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
import { Input, Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'mid-component',
|
|
templateUrl: './mid.component.html'
|
|
})
|
|
export class MidComponent {
|
|
@Input() field: string;
|
|
}
|