Skip to content
Snippets Groups Projects
Forked from TDT4140-Group 58 / Spring2021-SellPoint
138 commits behind the upstream repository.
post.module.ts 284 B
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PostFormComponent } from './post-form/post-form.component';



@NgModule({
  declarations: [
    PostFormComponent
  ],
  imports: [
    CommonModule
  ]
})
export class PostModule { }