mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 04:43:03 -05:00
25 lines
535 B
TypeScript
25 lines
535 B
TypeScript
import { Component, NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
@Component({
|
|
selector: 'lib-dashboard',
|
|
template: `
|
|
Dashboard
|
|
|
|
<button
|
|
routerLink="create-user"
|
|
class="ml-10 rounded-lg border bg-gray-700 p-2 text-white">
|
|
Create User
|
|
</button>
|
|
`,
|
|
})
|
|
export class DashboardComponent {}
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([{ path: '', component: DashboardComponent }]),
|
|
],
|
|
declarations: [DashboardComponent],
|
|
})
|
|
export class DashboardModule {}
|