import {Fragment} from 'react'; import {Panel, PanelBody, PanelHeader} from 'sentry/components/panels'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import {t} from 'sentry/locale'; import ApiChart from './apiChart'; import EventChart from './eventChart'; function AdminOverview() { const resolution = '1h'; const since = new Date().getTime() / 1000 - 3600 * 24 * 7; return (

{t('System Overview')}

{t('Event Throughput')} {t('API Responses')}
); } export default AdminOverview;