Create initial version of application

This commit is contained in:
Bálint Bokros
2017-12-18 17:52:10 +01:00
parent 9ccb152f0f
commit f82f9a55ae
23 changed files with 360 additions and 25 deletions

View File

@ -1,18 +1,37 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { AceEditorModule } from 'ng2-ace-editor';
import { AppComponent } from './app.component';
import { HeaderComponent } from './header/header.component';
import { LoginComponent } from './login/login.component';
import { MarkdownService } from './markdown.service';
import { WebideComponent } from './webide/webide.component';
import { LogsComponent } from './logs/logs.component';
import { TestButtonComponent } from './test-button/test-button.component';
import { WebSocketService } from './websocket.service';
@NgModule({
declarations: [
AppComponent
AppComponent,
HeaderComponent,
LoginComponent,
WebideComponent,
LogsComponent,
TestButtonComponent
],
imports: [
BrowserModule
BrowserModule,
NgbModule.forRoot(),
AceEditorModule,
],
providers: [
MarkdownService,
WebSocketService
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }