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

21 lines
549 B
JavaScript
Raw Normal View History

2018-09-13 15:41:42 -04:00
import React, { Fragment } from 'react';
const InfoBox = (props) => (
<Fragment>
{
(props.msg)?
(
<div className="alert alert-info" role="alert">
{
(typeof props.msg === 'string' || props.msg instanceof String)?
props.msg
: 'Enjoy the colouring! Usual service should resume shortly.'
}
</div>
) : null
}
</Fragment>
);
export default InfoBox;