12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
type Props = {
|
|
error: Error
|
|
}
|
|
export const ErrorMessage = (props: Props) => {
|
|
return (
|
|
<div class="h-full flex justify-center items-center flex-col">
|
|
<p class="text-2xl text-center">{props.error.message}</p>
|
|
<p class="text-center">{props.error.cause as string}</p>
|
|
</div>
|
|
)
|
|
}
|