2022-01-28 16:57:07 +01:00
|
|
|
import Robot from 'shared/components/robot/index.js'
|
|
|
|
import Events from './events.js'
|
|
|
|
|
|
|
|
const Error = props => (
|
|
|
|
<div className="mt-12">
|
|
|
|
<div className="flex flex-row items-center justify-around">
|
|
|
|
<h1>{props.app.t('errors.something')}</h1>
|
|
|
|
<div className="max-w-96"><Robot pose='fail' embed/></div>
|
|
|
|
</div>
|
2022-01-30 15:14:44 +01:00
|
|
|
<Events events={props.draft.events} />
|
2022-01-28 16:57:07 +01:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
|
|
|
|
export default Error
|
|
|
|
|