Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created October 9, 2018 16:25
Show Gist options
  • Save vsavkin/16403d56759ea850dca160def1a4efe0 to your computer and use it in GitHub Desktop.
Save vsavkin/16403d56759ea850dca160def1a4efe0 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NxModule } from '@nrwl/nx';
import { UiShellModule } from "@myorg/ui-shell";
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, NxModule.forRoot(), UiShellModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment