import React from 'react' export const ErrorPage = ({ error }: { error: 'offline' | '500' | 'IE' }) => { let errorLabel = 'An error occured. Please try to refresh or contact the owner of this bot.' if (error === 'offline') { errorLabel = 'Looks like your device is offline. Please, try to refresh the page.' } if (error === 'IE') { errorLabel = "This bot isn't compatible with Internet Explorer." } return (
{error === '500' && (

500

)}

{errorLabel}

) }