mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
19 lines
285 B
TypeScript
19 lines
285 B
TypeScript
import {
|
|
Component,
|
|
OnInit,
|
|
} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-send-access',
|
|
templateUrl: 'access.component.html',
|
|
})
|
|
export class AccessComponent implements OnInit {
|
|
constructor() {
|
|
return;
|
|
}
|
|
|
|
ngOnInit() {
|
|
return;
|
|
}
|
|
}
|