import { css } from '@emotion/css'; import { GrafanaTheme2 } from '@grafana/data'; import { useStyles2 } from '@grafana/ui'; import { Page } from 'app/core/components/Page/Page'; function getStyles(theme: GrafanaTheme2) { return css({ marginTop: theme.spacing(2), }); } export default function FeatureTogglePage() { const styles = useStyles2(getStyles); return (

Explore is disabled

To enable Explore, enable it in the Grafana config:
            {`[explore]
enable = true
`}
          
); }