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 97baca05a7
All checks were successful
continuous-integration/drone/push Build is passing
new structire
2022-10-22 15:56:19 +10:00

43 lines
1.3 KiB
TypeScript

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { Routes, RouterModule } from '@angular/router';
import { HttpClientModule } from '@angular/common/http';
import { AppComponent } from './app.component';
import { HomeComponent } from './home/home.component';
import { AboutComponent } from './about/about.component';
import { BoardsComponent } from './boards/boards.component';
import { NotFoundComponent } from './not-found/not-found.component';
import { ApiChatService } from './services/api-chat.service';
import { FormsModule } from '@angular/forms';
import { SendPostComponent } from './boards/send-post/send-post.component';
import { PostComponent } from './boards/post/post.component'
const appRoutes: Routes = [
{ path: '', component: HomeComponent },
{ path: 'boards', component: BoardsComponent },
{ path: 'about', component: AboutComponent },
{ path: '**', component: NotFoundComponent },
]
@NgModule({
declarations: [
AppComponent,
HomeComponent,
AboutComponent,
BoardsComponent,
NotFoundComponent,
PostComponent,
SendPostComponent
],
imports: [
BrowserModule,
RouterModule.forRoot(appRoutes),
HttpClientModule,
FormsModule
],
providers: [ApiChatService],
bootstrap: [AppComponent]
})
export class AppModule { }