import React from 'react'; import './ErrorAlert.css'; export function ErrorAlert({ children, title }) { return
{title}
{children}
; }