Skip to content

Instantly share code, notes, and snippets.

@aakashgarg19
Created January 1, 2021 08:55
file header
/**
* Copyright (c) ABC Foundation. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for full license information.
* @author XYZ
**/
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment