9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-home',
|
|
template: '<h1>Welcome to the Admin Panel!</h1>',
|
|
standalone: true,
|
|
})
|
|
export class HomeComponent {}
|