Files
bot/packages/embeds/js/src/components/ErrorMessage.tsx
2023-04-03 18:14:32 +02:00

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>
)
}