UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

17 lines (14 loc) 458 B
import { Component, Input } from '@angular/core'; import { CommonModule } from '@angular/common'; @Component({ selector: 'app-error-boundary', templateUrl: './error-boundary.component.html', styleUrls: ['./error-boundary.component.scss'], standalone: true, imports: [CommonModule] }) export class ErrorBoundaryComponent { @Input() message: string; localizedVal = window.PCore.getLocaleUtils().getLocaleValue; localeCategory = 'Messages'; }