mirror of
https://github.com/bitwarden/browser
synced 2025-12-28 06:03:40 +00:00
* Moved has-premium.guard under billing * Moved free-trial.ts to billing * Moved premium directives to billing * Moved families-policy.service.ts to billing * Moved trial initiation from auth to billing
14 lines
357 B
TypeScript
14 lines
357 B
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
import { Component, Input } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "app-review-blurb",
|
|
templateUrl: "review-blurb.component.html",
|
|
})
|
|
export class ReviewBlurbComponent {
|
|
@Input() header: string;
|
|
@Input() quote: string;
|
|
@Input() source: string;
|
|
}
|