colouring-montreal/app/src/frontend/error-box.js

21 lines
512 B
JavaScript
Raw Normal View History

2018-09-13 11:58:05 -04:00
import React, { Fragment } from 'react';
const ErrorBox = (props) => (
<Fragment>
{
(props.msg)?
(
<div className="alert alert-danger" role="alert">
{
(typeof props.msg === 'string' || props.msg instanceof String)?
props.msg
: 'Unexpected error'
}
</div>
) : null
}
</Fragment>
);
export default ErrorBox;