fp/services/next/app/components/error-card.tsx

9 lines
215 B
TypeScript
Raw Normal View History

2024-12-12 07:23:46 +00:00
export function ErrorCard(props: { message: string }) {
const { message } = props
return (
<div className="notification is-danger">
<button className="delete"></button>
{message}
</div>
)
}