Commit 63c49442 by Aino Leppänen

Added moya prefix to angular cli, created app routing module

1 parent ec6e2af9
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
"test": "test.ts", "test": "test.ts",
"tsconfig": "tsconfig.app.json", "tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json", "testTsconfig": "tsconfig.spec.json",
"prefix": "app", "prefix": "moya",
"styles": [ "styles": [
"styles.scss" "styles.scss"
], ],
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
# IDEs and editors # IDEs and editors
/.idea /.idea
/.vscode
.project .project
.classpath .classpath
.c9/ .c9/
......
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
@NgModule({
imports: [
CommonModule
],
declarations: []
})
export class AppRoutingModule { }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!