Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Oct 29, 2019
1 parent 3845ed1 commit 06cc466
Show file tree
Hide file tree
Showing 36 changed files with 1,026 additions and 544 deletions.
5 changes: 4 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"src/assets"
],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css",
"src/styles.sass"
],
"scripts": []
Expand Down Expand Up @@ -93,6 +94,7 @@
"src/assets"
],
"styles": [
"./node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css",
"src/styles.sass"
],
"scripts": []
Expand Down Expand Up @@ -124,6 +126,7 @@
}
}
}
}},
}
},
"defaultProject": "nucleo-watch-js"
}
71 changes: 71 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@
"private": true,
"dependencies": {
"@angular/animations": "~8.2.11",
"@angular/cdk": "~8.2.3",
"@angular/common": "~8.2.11",
"@angular/compiler": "~8.2.11",
"@angular/core": "~8.2.11",
"@angular/flex-layout": "^8.0.0-beta.27",
"@angular/forms": "~8.2.11",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "~8.2.11",
"@angular/platform-browser-dynamic": "~8.2.11",
"@angular/router": "~8.2.11",
"@stomp/ng2-stompjs": "^7.2.0",
"hammerjs": "^2.0.8",
"ngx-json-viewer": "^2.4.0",
"rxjs": "~6.4.0",
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
Expand Down
13 changes: 11 additions & 2 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { MessagesComponent } from './messages/messages.component';
import {ListingComponent} from './listing/listing.component';


const routes: Routes = [];
const routes: Routes = [
{
path: '',
component: MessagesComponent,
children: [
{ path: '', component: ListingComponent },
]
}
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
Expand Down
Loading

0 comments on commit 06cc466

Please sign in to comment.