export const renderErrorAlert = (error, options = {}) => { const { className = 'alert alert-danger alert-dismissible py-1 px-2 small', role = 'alert' } = options; if (!error) return null; return (