import React from 'react'; import s0 from './ErrorBoundaryFallback.module.scss'; import SvgGithub from './SvgGithub'; import SvgYacd from './SvgYacd'; const yacdRepoIssueUrl = 'https://github.com/metacubex/yacd'; type Props = { message?: string; detail?: string; }; function ErrorBoundaryFallback({ message, detail }: Props) { return (
{message ?

{message}

: null} {detail ?

{detail}

: null}

metacubex/yacd

); } export default ErrorBoundaryFallback;