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