feat: add a footer
This commit is contained in:
@ -1,10 +1,14 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import {Component} from '@angular/core';
|
||||
import {RouterOutlet} from '@angular/router';
|
||||
import {FooterComponent} from "@component/footer/footer.component";
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
standalone: true,
|
||||
imports: [RouterOutlet],
|
||||
template: `<router-outlet/>`
|
||||
imports: [RouterOutlet, FooterComponent],
|
||||
template: `
|
||||
<router-outlet/>
|
||||
<app-footer/>`
|
||||
})
|
||||
export class AppComponent {}
|
||||
export class AppComponent {
|
||||
}
|
||||
|
Reference in New Issue
Block a user