diff options
| author | Kamen Mladenov <kamen.d.mladenov@protonmail.com> | 2021-04-09 19:55:59 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-09 19:55:59 +0300 |
| commit | f849e37ccdd6fd48f83119a3b3b65cdd8b765dc3 (patch) | |
| tree | 83b88a773bb7dc053bb3aced35bce302264ec925 /src/app/app.module.ts | |
| parent | bcd88af53b1a920d728ec98b45daa9ac2e2c0917 (diff) | |
| parent | c13889759d70687de6833c505221c203f65fedb8 (diff) | |
| download | DevHive-Angular-main.tar DevHive-Angular-main.tar.gz DevHive-Angular-main.zip | |
Second Stage: Complete
Diffstat (limited to 'src/app/app.module.ts')
| -rw-r--r-- | src/app/app.module.ts | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 1bf44ad..39f8ab3 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -2,10 +2,8 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { ReactiveFormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { MatInputModule } from '@angular/material/input'; -import { MatButtonModule } from '@angular/material/button'; -import { MatFormFieldModule } from '@angular/material/form-field'; import { HttpClientModule } from '@angular/common/http'; +import { ClipboardModule } from 'ngx-clipboard'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; @@ -22,9 +20,10 @@ import { SuccessBarComponent } from './components/success-bar/success-bar.compon import { PostPageComponent } from './components/post-page/post-page.component'; import { AdminPanelPageComponent } from './components/admin-panel-page/admin-panel-page.component'; import { CommentComponent } from './components/comment/comment.component'; -import { CommentPageComponent } from './components/comment-page/comment-page.component'; import { PostAttachmentComponent } from './components/post-attachment/post-attachment.component'; import { RouterModule } from '@angular/router'; +import { NavbarComponent } from './components/navbar/navbar.component'; +import { CommentPageComponent } from './components/comment-page/comment-page.component'; @NgModule({ declarations: [ @@ -42,19 +41,18 @@ import { RouterModule } from '@angular/router'; PostPageComponent, AdminPanelPageComponent, CommentComponent, + PostAttachmentComponent, + NavbarComponent, CommentPageComponent, - PostAttachmentComponent ], imports: [ BrowserModule.withServerTransition({ appId: 'serverApp' }), AppRoutingModule, ReactiveFormsModule, BrowserAnimationsModule, - MatFormFieldModule, - MatInputModule, - MatButtonModule, HttpClientModule, - RouterModule + RouterModule, + ClipboardModule ], providers: [], bootstrap: [AppComponent] |
