First version
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import { Component } from "@angular/core";
|
||||
import { RouterOutlet } from "@angular/router";
|
||||
import { HeadingComponent } from "./modules/heading/heading.component";
|
||||
import { InfoComponent } from "./modules/info/info.component";
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
selector: "app-root",
|
||||
standalone: true,
|
||||
imports: [RouterOutlet],
|
||||
templateUrl: './app.component.html',
|
||||
styleUrl: './app.component.less'
|
||||
imports: [RouterOutlet, InfoComponent, HeadingComponent],
|
||||
templateUrl: "./app.component.html",
|
||||
styleUrl: "./app.component.less",
|
||||
})
|
||||
export class AppComponent {
|
||||
title = 'NwaifuWeb';
|
||||
title = "NwaifuWeb";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user