Skip to content

Instantly share code, notes, and snippets.

@DuncanFaulkner
Created March 30, 2021 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DuncanFaulkner/82f60b8799bc0365550d99ea838a5789 to your computer and use it in GitHub Desktop.
Save DuncanFaulkner/82f60b8799bc0365550d99ea838a5789 to your computer and use it in GitHub Desktop.
flex-layout - module
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { FormsModule } from "@angular/forms";
import { AppComponent } from "./app.component";
import { FlexLayoutModule } from "@angular/flex-layout";
@NgModule({
imports: [BrowserModule, FormsModule, FlexLayoutModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment