Ship the final German and English copy, compose every route from shared page primitives, and cover claims, parity and contact briefing in tests. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
399 B
TypeScript
13 lines
399 B
TypeScript
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-legal-review-notice',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
templateUrl: './legal-review-notice.html',
|
|
styleUrl: './legal-review-notice.scss',
|
|
})
|
|
export class LegalReviewNotice {
|
|
readonly notice = input.required<string>();
|
|
readonly todos = input<readonly string[]>([]);
|
|
}
|