diff --git a/src/addons/mod/wiki/components/components.module.ts b/src/addons/mod/wiki/components/components.module.ts
new file mode 100644
index 000000000..92b38259d
--- /dev/null
+++ b/src/addons/mod/wiki/components/components.module.ts
@@ -0,0 +1,40 @@
+// (C) Copyright 2015 Moodle Pty Ltd.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+import { CoreSharedModule } from '@/core/shared.module';
+import { NgModule } from '@angular/core';
+import { CoreCourseComponentsModule } from '@features/course/components/components.module';
+import { CoreTagComponentsModule } from '@features/tag/components/components.module';
+import { AddonModWikiIndexComponent } from './index/index';
+import { AddonModWikiMapModalComponent } from './map/map';
+import { AddonModWikiSubwikiPickerComponent } from './subwiki-picker/subwiki-picker';
+
+@NgModule({
+ declarations: [
+ AddonModWikiIndexComponent,
+ AddonModWikiSubwikiPickerComponent,
+ AddonModWikiMapModalComponent,
+ ],
+ imports: [
+ CoreSharedModule,
+ CoreCourseComponentsModule,
+ CoreTagComponentsModule,
+ ],
+ exports: [
+ AddonModWikiIndexComponent,
+ AddonModWikiSubwikiPickerComponent,
+ AddonModWikiMapModalComponent,
+ ],
+})
+export class AddonModWikiComponentsModule {}
diff --git a/src/addons/mod/wiki/components/index/addon-mod-wiki-index.html b/src/addons/mod/wiki/components/index/addon-mod-wiki-index.html
new file mode 100644
index 000000000..a66d401c0
--- /dev/null
+++ b/src/addons/mod/wiki/components/index/addon-mod-wiki-index.html
@@ -0,0 +1,95 @@
+
+
+
+ 1" (click)="showSubwikiPicker($event)" [attr.aria-label]="'addon.mod_wiki.subwiki' | translate">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+