import React from 'react' import { useSelector } from 'react-redux' const LostConnection = () => { const styleState = useSelector(state => state.style); return (

Lost connection to the server.

This is a server error. Nothing you can do.

{styleState.style.lostConnectionInfo.message}

) } export default LostConnection