idk
This commit is contained in:
parent
84389b321b
commit
073893b677
9 changed files with 87 additions and 340 deletions
|
@ -1,13 +1,15 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import {Child1Component} from "./child-1/child-1.component";
|
||||
import {Child2Component} from "./child-2/child-2.component";
|
||||
import {ParentComponent} from "./parent/parent.component";
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
standalone: true,
|
||||
imports: [RouterOutlet],
|
||||
templateUrl: './app.component.html',
|
||||
styleUrl: './app.component.css'
|
||||
styleUrl: './app.component.css',
|
||||
imports: [Child1Component, Child2Component, ParentComponent],
|
||||
})
|
||||
export class AppComponent {
|
||||
title = 'hotel-manager';
|
||||
public title: string = 'hotel-manager';
|
||||
}
|
||||
|
|
Reference in a new issue