1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

Move send-access components into their own folder (#13306)

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith
2025-02-11 15:40:30 +01:00
committed by GitHub
parent 4cb8e85937
commit ddd91856ff
13 changed files with 9 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
import { Component } from "@angular/core";
import { SharedModule } from "../../../shared";
@Component({
selector: "app-send-access-explainer",
templateUrl: "send-access-explainer.component.html",
standalone: true,
imports: [SharedModule],
})
export class SendAccessExplainerComponent {
constructor() {}
}