changed to use the correct flex library
parent
73cfe04b4d
commit
e1709dcef5
|
@ -1,6 +1,6 @@
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
import { BrowserModule } from '@angular/platform-browser';
|
||||||
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
|
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
|
||||||
import { FlexModule } from "@angular/flex-layout";
|
import { FlexLayoutModule } from "@angular/flex-layout";
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
|
@ -12,7 +12,7 @@ import { AuthModule } from "./auth/auth.module";
|
||||||
BrowserModule,
|
BrowserModule,
|
||||||
AuthModule,
|
AuthModule,
|
||||||
BrowserAnimationsModule,
|
BrowserAnimationsModule,
|
||||||
FlexModule,
|
FlexLayoutModule
|
||||||
],
|
],
|
||||||
providers: [ ],
|
providers: [ ],
|
||||||
bootstrap: [ AppComponent ]
|
bootstrap: [ AppComponent ]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { CommonModule } from '@angular/common';
|
import { CommonModule } from '@angular/common';
|
||||||
import { FormsModule } from "@angular/forms";
|
import { FormsModule } from "@angular/forms";
|
||||||
import { FlexModule } from "@angular/flex-layout";
|
import { FlexLayoutModule } from "@angular/flex-layout";
|
||||||
import { HttpClientModule } from "@angular/common/http";
|
import { HttpClientModule } from "@angular/common/http";
|
||||||
import {
|
import {
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
|
@ -24,7 +24,7 @@ import { AuthAntisocialComponent } from './auth-antisocial/auth-antisocial.compo
|
||||||
exports: [ AuthComponent ],
|
exports: [ AuthComponent ],
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FlexModule,
|
FlexLayoutModule,
|
||||||
FontAwesomeModule,
|
FontAwesomeModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
HttpClientModule,
|
HttpClientModule,
|
||||||
|
|
Loading…
Reference in New Issue