mirror of
https://github.com/bitwarden/desktop
synced 2025-12-31 23:53:23 +00:00
17 lines
603 B
TypeScript
17 lines
603 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { CollectionService } from 'jslib/abstractions/collection.service';
|
|
import { FolderService } from 'jslib/abstractions/folder.service';
|
|
|
|
import { GroupingsComponent as BaseGroupingsComponent } from 'jslib/angular/components/groupings.component';
|
|
|
|
@Component({
|
|
selector: 'app-vault-groupings',
|
|
templateUrl: 'groupings.component.html',
|
|
})
|
|
export class GroupingsComponent extends BaseGroupingsComponent {
|
|
constructor(collectionService: CollectionService, folderService: FolderService) {
|
|
super(collectionService, folderService);
|
|
}
|
|
}
|