mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
template: `
|
|
<h2>Library Schematics</h2>
|
|
`,
|
|
styles: []
|
|
})
|
|
export class AppComponent {
|
|
title = 'schematics-for-libraries';
|
|
}
|