Last active
August 9, 2018 16:05
-
-
Save yubing24/a55ed0b3a68d6e238d6f45d56d29a746 to your computer and use it in GitHub Desktop.
Revisions
-
yubing24 revised this gist
Aug 9, 2018 . 2 changed files with 45 additions and 37 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,37 +0,0 @@ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,45 @@ import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import {AppComponent} from './app.component'; import { MatButtonModule, MatExpansionModule, MatIconModule, MatListModule, MatMenuModule, MatSidenavModule, MatToolbarModule } from '@angular/material'; import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; import {CommonModule} from '@angular/common'; import {AppRoutingModule} from './app-routing.module'; import {DashboardComponent} from './dashboard/dashboard.component'; import {ProfileComponent} from './profile/profile.component'; import {RouterModule} from '@angular/router'; @NgModule({ declarations: [ AppComponent, DashboardComponent, ProfileComponent, ], imports: [ BrowserModule, BrowserAnimationsModule, CommonModule, RouterModule, AppRoutingModule, MatButtonModule, MatExpansionModule, MatIconModule, MatListModule, MatMenuModule, MatSidenavModule, MatToolbarModule, ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } -
yubing24 created this gist
Aug 9, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ import {NgModule} from '@angular/core'; import {CommonModule} from '@angular/common'; import {RouterModule} from '@angular/router'; import {AccountComponent} from './account.component'; import {AccountRoutingModule} from './account-routing.module'; import { MatButtonModule, MatExpansionModule, MatIconModule, MatListModule, MatMenuModule, MatSidenavModule, MatToolbarModule, MatTooltipModule } from '@angular/material'; import {WidgetModule} from '../widget/widget.module'; @NgModule({ imports: [ CommonModule, RouterModule, MatButtonModule, MatExpansionModule, MatIconModule, MatListModule, MatMenuModule, MatSidenavModule, MatToolbarModule, MatTooltipModule, AccountRoutingModule, ], declarations: [ AccountComponent ], }) export class AccountModule { }