mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 14:23:02 -05:00
feat(challengestandalone): challenge standalone
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
|
||||
@NgModule({
|
||||
declarations: [],
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule.forChild([
|
||||
{
|
||||
path: '',
|
||||
loadChildren: () =>
|
||||
import('./dashboard/dashboard.component').then(
|
||||
(m) => m.ContactDashboardModule
|
||||
),
|
||||
},
|
||||
{
|
||||
path: 'create-contact',
|
||||
loadChildren: () =>
|
||||
import('./create-contact/create-contact.component').then(
|
||||
(m) => m.CreateContactModule
|
||||
),
|
||||
},
|
||||
]),
|
||||
],
|
||||
})
|
||||
export class ContactFeatureModule {}
|
||||
@@ -0,0 +1,22 @@
|
||||
import { Component, NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'lib-create-contact',
|
||||
template: `Create Contact Form
|
||||
|
||||
<button
|
||||
routerLink=".."
|
||||
class="border bg-gray-700 rounded-lg p-2 text-white ml-5">
|
||||
Back
|
||||
</button> `,
|
||||
})
|
||||
export class CreateContactComponent {}
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
RouterModule.forChild([{ path: '', component: CreateContactComponent }]),
|
||||
],
|
||||
declarations: [CreateContactComponent],
|
||||
})
|
||||
export class CreateContactModule {}
|
||||
@@ -0,0 +1,22 @@
|
||||
import { Component, NgModule } from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'lib-contact-dashboard',
|
||||
template: `Contact Dashboard
|
||||
|
||||
<button
|
||||
routerLink="create-contact"
|
||||
class="border bg-gray-700 rounded-lg p-2 text-white ml-10">
|
||||
Create contact
|
||||
</button> `,
|
||||
})
|
||||
export class ContactDashboardComponent {}
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
RouterModule.forChild([{ path: '', component: ContactDashboardComponent }]),
|
||||
],
|
||||
declarations: [ContactDashboardComponent],
|
||||
})
|
||||
export class ContactDashboardModule {}
|
||||
Reference in New Issue
Block a user