1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

split vault into components

This commit is contained in:
Kyle Spearrin
2018-01-23 22:21:14 -05:00
parent f7b8bef465
commit d3fdaed4c2
10 changed files with 161 additions and 133 deletions

View File

@@ -0,0 +1,23 @@
import * as template from './view.component.html';
import {
Component,
Input,
OnChanges,
} from '@angular/core';
@Component({
selector: 'app-vault-view',
template: template,
})
export class ViewComponent implements OnChanges {
@Input() cipherId: string;
constructor() {
}
ngOnChanges() {
}
}