11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule
|
|
],
|
|
declarations: []
|
|
})
|
|
export class AppRoutingModule { }
|