Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

bookmarks.module.ts 493 B

1234567891011121314151617181920
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { FormsModule } from '@angular/forms';
  4. import { IonicModule } from '@ionic/angular';
  5. import { BookmarksPageRoutingModule } from './bookmarks-routing.module';
  6. import { BookmarksPage } from './bookmarks.page';
  7. @NgModule({
  8. imports: [
  9. CommonModule,
  10. FormsModule,
  11. IonicModule,
  12. BookmarksPageRoutingModule
  13. ],
  14. declarations: [BookmarksPage]
  15. })
  16. export class BookmarksPageModule {}