1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

added vault component

This commit is contained in:
Kyle Spearrin
2018-01-16 16:12:26 -05:00
parent 824c5e5ff9
commit 950ab69ea7
4 changed files with 21 additions and 0 deletions

View File

@@ -5,10 +5,12 @@ import {
} from '@angular/router';
import { LoginComponent } from './accounts/login.component';
import { VaultComponent } from './vault/vault.component';
const routes: Routes = [
{ path: '', redirectTo: '/login', pathMatch: 'full' },
{ path: 'login', component: LoginComponent },
{ path: 'vault', component: VaultComponent },
];
@NgModule({