This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
bookmarks.module.ts 807 B
Newer Older
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { ExerciseModule } from 'app/exercise/exercise.module';

import { GitSearchV2SharedModule } from 'app/shared/shared.module';
import { BookmarkComponent } from './bookmarks.component';
import { UserWatchListUpdateComponent } from './bookmarks-update.component';
import { UserWatchListDeleteDialogComponent } from './user-watch-list-delete-dialog.component';
import { bookmarksRoute } from './bookmarks.route';

@NgModule({
  imports: [GitSearchV2SharedModule, ExerciseModule, RouterModule.forChild(bookmarksRoute)],
  declarations: [BookmarkComponent, UserWatchListUpdateComponent, UserWatchListDeleteDialogComponent],
  entryComponents: [UserWatchListDeleteDialogComponent],
})
export class BookmarskModule {}