export default function ErrorDisplay({error}){
return (
<>
<h1>{error.name}</h1>
<p>{error.message}</p>
</>
)
}