Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
c3f3cacc7577dbdc5ba16676808f714751d5478c
Branches
master
Tags
1.1.129-287
1.1.113-149
1.1.108-143
1.1.95-138
1.1.92-119
1.0.35-18
1.0.13-14
Files
Commits
Log
Graph
Stats
angular-compile.git
test
angular-webpack
angular
module.ts
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 25
Mode: application/typescript
Binary: false
Hang on, we reloading big blames...
69db3407
import { NgModule, } from '@angular/core';
f46e4d96
63831028
import {RouterModule, Routes} from '@angular/router';
fb0911e3
63831028
import {CorifeusMaterialModule} from 'corifeus-web-material'
dbff41e2
63831028
import {Page} from './page';
f46e4d96
import {
69db3407
CompileModule,
f46e4d96
} from '../../../src';
63831028
import {MatDividerModule} from '@angular/material/divider'
fb0911e3
2ac789d6
import "../assets/style.scss";
c3f3cacc
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
fb0911e3
export const routes: Routes = [ { path: '', component: Page, }, ];
f46e4d96
@NgModule({ imports: [
c3f3cacc
BrowserAnimationsModule,
83396ced
CorifeusMaterialModule,
e61654aa
MatDividerModule,
fb0911e3
RouterModule.forRoot(routes),
83396ced
CompileModule
f46e4d96
], declarations: [ Page, ],
63831028
providers: [], bootstrap: [Page]
f46e4d96
})
63831028
export class Module { };