import React from 'react';
import { Panel } from 'react-bootstrap';
const ChartContainer = function () {
return (
<Panel header="Chart title">
chart goes here
</Panel>
);
};
export default ChartContainer;