1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +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

@@ -0,0 +1,16 @@
import * as template from './vault.component.html';
import {
Component,
OnInit,
} from '@angular/core';
@Component({
selector: 'app-vault',
template: template,
})
export class VaultComponent implements OnInit {
ngOnInit() {
// TODO?
}
}