aboutsummaryrefslogtreecommitdiff
path: root/src/app/app.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/app.module.ts')
-rw-r--r--src/app/app.module.ts16
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]