import { css } from '@emotion/css'; import React from 'react'; import { GrafanaTheme2 } from '@grafana/data'; import { useStyles2 } from '@grafana/ui'; import Page from 'app/core/components/Page/Page'; export default function FeatureTogglePage() { const styles = useStyles2( (theme: GrafanaTheme2) => css` margin-top: ${theme.spacing(2)}; ` ); return (

Explore is disabled

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