Sengi-Windows-MacOS-Linux/Mamoth/src/app/app.module.ts

31 lines
991 B
TypeScript
Raw Normal View History

2018-03-15 01:48:52 +01:00
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgxElectronModule } from 'ngx-electron';
import { AppComponent } from './app.component';
2018-03-16 01:43:53 +01:00
import { LeftSideBarComponent } from './components/left-side-bar/left-side-bar.component';
import { StreamsMainDisplayComponent } from './components/streams-main-display/streams-main-display.component';
2018-03-16 02:03:23 +01:00
import { StreamComponent } from './components/stream/stream.component';
2018-03-16 02:41:25 +01:00
import { StreamsSelectionFooterComponent } from './components/streams-selection-footer/streams-selection-footer.component';
2018-03-16 04:48:30 +01:00
import { TootComponent } from './components/toot/toot.component';
2018-03-15 01:48:52 +01:00
@NgModule({
declarations: [
2018-03-16 01:43:53 +01:00
AppComponent,
LeftSideBarComponent,
2018-03-16 02:03:23 +01:00
StreamsMainDisplayComponent,
2018-03-16 02:41:25 +01:00
StreamComponent,
2018-03-16 04:48:30 +01:00
StreamsSelectionFooterComponent,
TootComponent
2018-03-15 01:48:52 +01:00
],
imports: [
BrowserModule,
NgxElectronModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }