/** * @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 (

애플리케이션을 시작할 수 없습니다.

오류
{kind}
코드
{code}
{buildId && ( <>
빌드
{buildId}
)} {configSchemaVersion && ( <>
설정 스키마
{configSchemaVersion}
)} {releaseId && ( <>
릴리스
{releaseId}
)}

지원 참조: {supportReference}

); }