start project
This commit is contained in:
13
first-app/src/app/app.config.ts
Normal file
13
first-app/src/app/app.config.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/*!
|
||||
* @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.dev/license
|
||||
*/
|
||||
|
||||
import {ApplicationConfig} from '@angular/core';
|
||||
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [],
|
||||
};
|
||||
9
first-app/src/app/app.ts
Normal file
9
first-app/src/app/app.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import {Component} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
template: `
|
||||
Welcome to Angular!
|
||||
`,
|
||||
})
|
||||
export class App {}
|
||||
Reference in New Issue
Block a user