import React from 'react' import classnames from 'classnames' export type MessageProps = { id?: string type?: string state?: string text?: string } const Message: React.FC = ({ id, type, state, text = 'Some content could not load. Check your internet connection or browser settings.', }) => { return (

{text}

) } export default Message