Removed offline component

This commit is contained in:
Jori Lallo
2017-04-29 14:14:11 -07:00
parent 5dd8a759f9
commit dd0098943c
8 changed files with 60 additions and 260 deletions

View File

@ -11,7 +11,6 @@ class Alert extends React.Component {
danger: PropTypes.bool,
warning: PropTypes.bool,
success: PropTypes.bool,
offline: PropTypes.bool,
};
render() {
@ -19,7 +18,6 @@ class Alert extends React.Component {
if (this.props.danger) alertType = 'danger';
if (this.props.warning) alertType = 'warning';
if (this.props.success) alertType = 'success';
if (this.props.offline) alertType = 'offline';
if (!alertType) alertType = 'info'; // default
return (