This commit is contained in:
2025-11-03 17:47:48 +01:00
parent 7120612ad1
commit 6232b80741
3 changed files with 17 additions and 3 deletions

View File

@@ -0,0 +1 @@
<h1>Hello world!</h1>

View File

@@ -3,9 +3,7 @@ import {Component} from '@angular/core';
@Component({
selector: 'app-root',
imports: [],
template: `
<h1>Hello world!</h1>
`,
templateUrl: './app.html',
styleUrls: ['./app.css'],
})
export class App {

View File

@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-home',
imports: [],
template: `
<p>
home works!
</p>
`,
styles: ``
})
export class Home {
}