mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
split vault into components
This commit is contained in:
23
src/app/vault/ciphers.component.ts
Normal file
23
src/app/vault/ciphers.component.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as template from './ciphers.component.html';
|
||||
|
||||
import {
|
||||
Component,
|
||||
Input,
|
||||
OnChanges,
|
||||
} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-vault-ciphers',
|
||||
template: template,
|
||||
})
|
||||
export class CiphersComponent implements OnChanges {
|
||||
@Input() ciphers: any[];
|
||||
|
||||
constructor() {
|
||||
|
||||
}
|
||||
|
||||
ngOnChanges() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user