I am new to Angular 5 ,as per my business need I need to get the user machine\'s mac address.For that I tried to implement the following...
This is an example of adding a module in app module file app.module.ts for example 'BrowserModule'
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }