mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html'
|
|
})
|
|
export class AppComponent {
|
|
birthday = new Date(1988, 3, 15); // April 15, 1988
|
|
}
|