21 lines
549 B
JavaScript
21 lines
549 B
JavaScript
|
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;
|