mirror of
https://github.com/jorisbertomeu/web-screensaver.git
synced 2026-04-19 16:27:40 +02:00
25 lines
641 B
TypeScript
25 lines
641 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { AdminComponent } from './pages/admin/admin.component';
|
|
import { DashboardComponent } from './pages/dashboard/dashboard.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
AdminComponent,
|
|
DashboardComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
FormsModule,
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|