Skip to content

Commit

Permalink
finalizacao
Browse files Browse the repository at this point in the history
  • Loading branch information
HipolitoDeveloper committed May 21, 2021
1 parent 4b48352 commit e8dc627
Show file tree
Hide file tree
Showing 21 changed files with 851 additions and 519 deletions.
3 changes: 3 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": "27981db1-94ee-4a1e-a491-8bde0d26a0c4"
},
"version": 1,
"newProjectRoot": "projects",
"projects": {
Expand Down
10 changes: 10 additions & 0 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"@angular/router": "~12.0.0",
"@mdi/angular-material": "^5.9.55",
"material-icons": "^0.6.3",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
Expand Down
12 changes: 9 additions & 3 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { EntranceComponent } from './screen/entrance/entrance.component';
import { HomeComponent } from './screen/home/home.component';

const routes: Routes = [];
const routes: Routes = [
{ path: '', component: EntranceComponent },
{ path: 'home', component: HomeComponent },
{ path: 'login', component: EntranceComponent },
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
exports: [RouterModule],
})
export class AppRoutingModule { }
export class AppRoutingModule {}
Loading

0 comments on commit e8dc627

Please sign in to comment.