ASPNetCore/Next/components/Errors.tsx
2021-03-29 14:08:26 +07:00

6 lines
105 B
TypeScript

export default function Errors({ errors }) {
return errors.map(x => (
<li>{x}</li>
));
}