UNPKG

@boomerang-io/carbon-addons-boomerang-react

Version:
18 lines (15 loc) 497 B
import React from 'react'; import ErrorDragon from '../ErrorDragon/ErrorDragon.js'; import ErrorPageCore from '../ErrorPageCore/ErrorPageCore.js'; /* IBM Confidential 694970X, 69497O0 © Copyright IBM Corp. 2022, 2024 */ function ErrorFullPage({ theme = "core", ...rest }) { if (theme === "boomerang") { React.createElement(ErrorDragon, { ...rest, statusUrl: rest.statusUrl }); } return React.createElement(ErrorPageCore, { ...rest }); } export { ErrorFullPage as default };