Skip to content

Commit

Permalink
Primeira versão do Front-End
Browse files Browse the repository at this point in the history
  • Loading branch information
valdecirsarat committed Jun 2, 2021
1 parent 6ffe19e commit 84abbf4
Show file tree
Hide file tree
Showing 22 changed files with 324 additions and 550 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start": "ng serve --o",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
Expand Down
6 changes: 5 additions & 1 deletion src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { DashboardPageComponent } from './dashboard/dashboard-page/dashboard-page.component';

const routes: Routes = [];
const routes: Routes = [
{ path: "", component: DashboardPageComponent }

];

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

0 comments on commit 84abbf4

Please sign in to comment.