import React from 'react'; import PropTypes from 'prop-types'; import { translate as __ } from 'foremanReact/common/I18n'; import PageLayout from 'foremanReact/routes/common/PageLayout/PageLayout'; import Statistics from './Statistics/Statistics'; const StatisticsPage = ({ statisticsMeta, ...props }) => ( ); StatisticsPage.propTypes = { statisticsMeta: PropTypes.array, }; StatisticsPage.defaultProps = { statisticsMeta: [], }; export default StatisticsPage;