1
0
Fork 0
freesewing/packages/freesewing.shared/components/workbench/draft/error.js

16 lines
404 B
JavaScript
Raw Normal View History

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