Browse Source

[add]

年次法要のルートを追加
poohr 3 weeks ago
parent
commit
20019ca2c0
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      src/app/app.routes.ts

+ 5
- 1
src/app/app.routes.ts View File

4
 import { DankaDetail } from './pages/danka-detail/danka-detail';
4
 import { DankaDetail } from './pages/danka-detail/danka-detail';
5
 import { DankaEdit } from './pages/danka-edit/danka-edit';
5
 import { DankaEdit } from './pages/danka-edit/danka-edit';
6
 import { FamilyEdit } from './pages/family-edit/family-edit';
6
 import { FamilyEdit } from './pages/family-edit/family-edit';
7
-
8
 import { KakochoEdit } from './pages/kakocho-edit/kakocho-edit';
7
 import { KakochoEdit } from './pages/kakocho-edit/kakocho-edit';
8
+import  {MemorialList} from './pages/memorial-list/memorial-list';
9
 
9
 
10
 export const routes: Routes = [
10
 export const routes: Routes = [
11
   {
11
   {
44
     path: 'danka/:dankaId/kakocho/:kakochoId/edit',
44
     path: 'danka/:dankaId/kakocho/:kakochoId/edit',
45
     component: KakochoEdit,
45
     component: KakochoEdit,
46
   },
46
   },
47
+  {
48
+    path: 'memorial-list',
49
+    component:MemorialList,
50
+  },
47
 ];
51
 ];

Loading…
Cancel
Save