import React from 'react' type ErrorStateProps = { message: string onBack?: () => void } /** * Error state component shown when something goes wrong */ export const ErrorState = React.memo(({ message, onBack }) => (
⚠️

Oops!

{message}

{onBack && ( )}
)) ErrorState.displayName = 'ErrorState'