mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
import { Component } from '@angular/core';
|
|
@Component({
|
|
selector: 'app-bar',
|
|
standalone: true,
|
|
template: `
|
|
BarComponent
|
|
`,
|
|
})
|
|
export class BarComponent {}
|