import { formatMessage } from "../i18n/index.js"; /** * @param {{ * kind?: string, * code?: string, * buildId?: string, * configSchemaVersion?: string, * releaseId?: string, * supportReference: string * }} props */ export function BootErrorShell({ kind = "BOOT_CONFIG_FAILURE", code = "BOOT_FAILED", buildId, configSchemaVersion, releaseId, supportReference, }) { return (

{formatMessage("ko-KR", "boot.failure.title")}

{formatMessage("ko-KR", "boot.field.error")}
{kind}
{formatMessage("ko-KR", "boot.field.code")}
{code}
{buildId && ( <>
{formatMessage("ko-KR", "boot.field.build")}
{buildId}
)} {configSchemaVersion && ( <>
{formatMessage("ko-KR", "boot.field.configSchema")}
{configSchemaVersion}
)} {releaseId && ( <>
{formatMessage("ko-KR", "boot.field.release")}
{releaseId}
)}

{formatMessage("ko-KR", "boot.supportReference", { reference: supportReference, })}

); }