import React from 'react'; import Typography from '@mui/material/Typography'; export default function Error({ error: { message, hints } }) { return ( <> {message} {hints.map((hint) => ( {hint} ))} > ); }