mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-07-12 03:56:24 +00:00
Add logic to Login
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
||||
@ -25,6 +27,8 @@ import { WebSocketService } from './websocket.service';
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
FormsModule,
|
||||
HttpClientModule,
|
||||
NgbModule.forRoot(),
|
||||
AceEditorModule,
|
||||
],
|
||||
@ -32,6 +36,8 @@ import { WebSocketService } from './websocket.service';
|
||||
MarkdownService,
|
||||
WebSocketService
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
bootstrap: [
|
||||
AppComponent
|
||||
]
|
||||
})
|
||||
export class AppModule { }
|
||||
|
Reference in New Issue
Block a user