RSS Git Download  Clone
Raw View History
Blames found: 25 Mode: application/typescript Binary: false


Hang on, we reloading big blames...
import { NgModule, } from '@angular/core';
import {RouterModule, Routes} from '@angular/router';
import {CorifeusMaterialModule} from 'corifeus-web-material'
import {Page} from './page';
import {
CompileModule,
} from '../../../src';
import {MatDividerModule} from '@angular/material/divider'
import "../assets/style.scss";
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
export const routes: Routes = [ { path: '', component: Page, }, ];
@NgModule({ imports: [
BrowserAnimationsModule,
CorifeusMaterialModule,
MatDividerModule,
RouterModule.forRoot(routes),
CompileModule
], declarations: [ Page, ],
providers: [], bootstrap: [Page]
})
export class Module { };