You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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 {}