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