mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 13:26:08 +00:00
13 lines
211 B
TypeScript
13 lines
211 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
@NgModule({
|
|
|
|
declarations: [],
|
|
exports: [],
|
|
imports: [
|
|
CommonModule,
|
|
]
|
|
})
|
|
export class ComponentsModule { }
|