const Message = ({message, error, normal, warning, isFixed, className, removable, dispatch, action}) => {

  const closeButton = removable && <span className={cx('btn-close', 'pull-right')} onClick = {(e) => {dispatch(action())}}>X</span>;

  return (