2
0
Files
bot/apps/viewer/layouts/ErrorPage.tsx
2021-12-29 10:22:26 +01:00

19 lines
409 B
TypeScript

import React from 'react'
export const ErrorPage = ({ error }: { error: Error }) => {
return (
<div
style={{
height: '100vh',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'column',
}}
>
<h1 style={{ fontWeight: 'bold', fontSize: '30px' }}>{error.name}</h1>
<h2>{error.message}</h2>
</div>
)
}