import styled from '@emotion/styled'; import * as Layout from 'sentry/components/layouts/thirds'; import PageFilterBar from 'sentry/components/organizations/pageFilterBar'; import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle'; import {space} from 'sentry/styles/space'; import { PageErrorAlert, PageErrorProvider, } from 'sentry/utils/performance/contexts/pageError'; import useOrganization from 'sentry/utils/useOrganization'; import StarfishDatePicker from 'sentry/views/starfish/components/datePicker'; import {StarfishPageFiltersContainer} from 'sentry/views/starfish/components/starfishPageFiltersContainer'; import {StarfishProjectSelector} from 'sentry/views/starfish/components/starfishProjectSelector'; import {ModuleName} from 'sentry/views/starfish/types'; import {ROUTE_NAMES} from 'sentry/views/starfish/utils/routeNames'; import SpansView from 'sentry/views/starfish/views/spans/spansView'; export default function DBModule() { const organization = useOrganization(); return ( {ROUTE_NAMES.database} ); } const StyledPageFilterBar = styled(PageFilterBar)` margin-bottom: ${space(2)}; `;