mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 06:13:03 -05:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'lib-user-home',
|
|
template: `User Home component`,
|
|
})
|
|
export class UserHomeComponent {}
|