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

Skip to content
Snippets Groups Projects
bookmarks.module.ts 789 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';
Michael Breu's avatar
Michael Breu committed
import { BookmarksDeleteDialogComponent } from './bookmarks-delete-dialog.component';
import { bookmarksRoute } from './bookmarks.route';

@NgModule({
  imports: [GitSearchV2SharedModule, ExerciseModule, RouterModule.forChild(bookmarksRoute)],
Michael Breu's avatar
Michael Breu committed
  declarations: [BookmarkComponent, UserWatchListUpdateComponent, BookmarksDeleteDialogComponent],
  entryComponents: [BookmarksDeleteDialogComponent],
})
export class BookmarskModule {}