This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/app.module.ts
RakVhalate ccef7fb86f
All checks were successful
continuous-integration/drone/push Build is passing
Added one button
2022-12-04 02:40:33 +10:00

53 lines
1.6 KiB
TypeScript

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
import { AppComponent } from './app.component';
import { HomeComponent } from './pages/home/home.component';
import { AboutComponent } from './pages/about/about.component';
import { BoardsComponent } from './pages/SingleThread/boards.component';
import { NotFoundComponent } from './pages/not-found/not-found.component';
import { ApiChatService } from './services/api-chat.service';
import { FormsModule } from '@angular/forms';
import { SendPostComponent } from './pages/send-post/send-post.component';
import { PostComponent } from './pages/SingleThread/post/post.component'
import { ThreadsComponent } from './pages/BoardThreads/threads.component';
import { OPComponent } from './pages/BoardThreads/op/op.component';
import { AppRoutingModule } from './app-routing.module';
import {MatSidenavModule} from "@angular/material/sidenav";
import {BrowserAnimationsModule} from "@angular/platform-browser/animations";
import { NavBarComponent } from './pages/nav-bar/nav-bar.component';
@NgModule({
declarations: [
AppComponent,
HomeComponent,
AboutComponent,
BoardsComponent,
NotFoundComponent,
PostComponent,
SendPostComponent,
ThreadsComponent,
OPComponent,
NavBarComponent,
],
imports: [
BrowserModule,
HttpClientModule,
FormsModule,
AppRoutingModule,
MatSidenavModule,
BrowserAnimationsModule
],
providers: [
ApiChatService
],
bootstrap: [AppComponent]
})
export class AppModule { }