diff --git a/src/app/app.module.ts b/src/app/app.module.ts index a7c285e1d0..b026bd5aef 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -8,9 +8,12 @@ import { NgModule } from '@angular/core'; import { ServicesModule } from './services/services.module'; import { AppComponent } from './app.component'; +import { CiphersComponent } from './vault/ciphers.component'; +import { GroupingsComponent } from './vault/groupings.component'; import { IconComponent } from './vault/icon.component'; import { LoginComponent } from './accounts/login.component'; import { VaultComponent } from './vault/vault.component'; +import { ViewComponent } from './vault/view.component'; @NgModule({ imports: [ @@ -21,9 +24,12 @@ import { VaultComponent } from './vault/vault.component'; ], declarations: [ AppComponent, + CiphersComponent, + GroupingsComponent, IconComponent, LoginComponent, VaultComponent, + ViewComponent, ], providers: [], bootstrap: [AppComponent], diff --git a/src/app/vault/ciphers.component.html b/src/app/vault/ciphers.component.html new file mode 100644 index 0000000000..4c3deeef85 --- /dev/null +++ b/src/app/vault/ciphers.component.html @@ -0,0 +1,28 @@ +
+ + diff --git a/src/app/vault/ciphers.component.ts b/src/app/vault/ciphers.component.ts new file mode 100644 index 0000000000..3b21ee72ec --- /dev/null +++ b/src/app/vault/ciphers.component.ts @@ -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() { + + } +} diff --git a/src/app/vault/groupings.component.html b/src/app/vault/groupings.component.html new file mode 100644 index 0000000000..e5dab2f9a7 --- /dev/null +++ b/src/app/vault/groupings.component.html @@ -0,0 +1,27 @@ +