From bc797cfb6b1c3f622f6b9cd2f0d6ba2c0253eb27 Mon Sep 17 00:00:00 2001 From: Dikshit Moradiya <106728438+ct-dixit@users.noreply.github.com> Date: Wed, 16 Apr 2025 14:24:17 +0530 Subject: [PATCH] Update app-routing.module.ts --- src/app/app-routing.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index fffe9b9..a812d0d 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -22,11 +22,11 @@ const routes: Routes = [ }, { path: 'typography', - loadComponent: () => import('./demo/component/basic-component/color/color.component').then((c) => c.ColorComponent) + loadComponent: () => import('./demo/component/basic-component/typography/typography.component').then((c) => c.TypographyComponent) }, { path: 'color', - loadComponent: () => import('./demo/component/basic-component/typography/typography.component').then((c) => c.TypographyComponent) + loadComponent: () => import('./demo/component/basic-component/color/color.component').then((c) => c.ColorComponent) }, { path: 'sample-page',