* Move global styles to angular app * Create dummy notification component * Create dummy html for macro * Fix click on sidemenu, so that link is the whole line
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { LocationStrategy, HashLocationStrategy } from '@angular/common';
|
|
|
|
import { APP_ROUTER_PROVIDERS } from './main-app.routes';
|
|
|
|
import { DataProviderService } from './services/data-provider.service';
|
|
import { MapperService } from './services/mapper.service';
|
|
|
|
import { MainAppComponent } from './main-app.component';
|
|
import { KeymapComponent } from './components/keymap/keymap.component';
|
|
import { MacroComponent } from './components/macro/macro.component';
|
|
import { LegacyLoaderComponent } from './components/legacy/legacy-loader.component';
|
|
import { NotificationComponent } from './components/notification/notification.component';
|
|
|
|
@NgModule({
|
|
declarations: [MainAppComponent, KeymapComponent, MacroComponent, LegacyLoaderComponent, NotificationComponent],
|
|
imports: [BrowserModule],
|
|
providers: [
|
|
DataProviderService,
|
|
MapperService,
|
|
APP_ROUTER_PROVIDERS,
|
|
{ provide: LocationStrategy, useClass: HashLocationStrategy }
|
|
],
|
|
bootstrap: [MainAppComponent]
|
|
})
|
|
export class AppModule { }
|