Dashboard refactory (#3581)

Create Chart component for all chart fetching and rendering, and apply redux architecture in dashboard view.
This commit is contained in:
Grace Guo
2017-11-08 10:46:21 -08:00
committed by GitHub
parent 39e502faae
commit 4fa1f0ab17
47 changed files with 2048 additions and 876 deletions

View File

@@ -0,0 +1,21 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Alert } from 'react-bootstrap';
const propTypes = {
alertContent: PropTypes.node.isRequired,
};
const DashboardAlert = ({ alertContent }) => (
<div id="alert-container">
<div className="container-fluid">
<Alert bsStyle="warning">
{alertContent}
</Alert>
</div>
</div>
);
DashboardAlert.propTypes = propTypes;
export default DashboardAlert;