// __SDEFILE__ - This file is a dependency for the stand-alone environment import { useTranslation } from 'next-i18next' import { useState } from 'react' import { Robot } from 'shared/components/robot/index.mjs' import { Popout } from 'shared/components/popout/index.mjs' export const ErrorView = ({ children, inspectChildren }) => { const { t } = useTranslation(['errors']) const [share, setShare] = useState(false) return (

{t('errors:something')}

{children}

Would you like to report this problem?

You can help us make FreeSewing better by reporting this problem.

If you choose to report this:

If you prefer not to share any info, or want to investigate the problem yourself, you can do so:

{inspectChildren}
) }