import { NgModule } from '@angular/core';
import { NameComponent } from './name.component';
@NgModule({
imports: [],
exports: [],
declarations: [NameComponent],
providers: [],
})
export class NameModule { }
Angular Module
This code imports the NameComponent into the module.
Shortcut: a_module
0 Comments
Add Comment
Log in to add a comment