mirror of
https://github.com/bitwarden/browser
synced 2026-01-05 18:13:26 +00:00
11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
import { Component, Input } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "app-trial-confirmation-details",
|
|
templateUrl: "confirmation-details.component.html",
|
|
})
|
|
export class ConfirmationDetailsComponent {
|
|
@Input() email: string;
|
|
@Input() orgLabel: string;
|
|
}
|