mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
export default function ServerError(props: { error: any }) {
|
|
return (
|
|
<>
|
|
<div className="container">
|
|
<div className="title">Server Error</div>
|
|
|
|
<span>{props.error.message}</span>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|