mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
22 lines
458 B
TypeScript
22 lines
458 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
import { Page } from 'app/core/components/Page/Page';
|
||
|
|
||
|
export default function FeatureTogglePage() {
|
||
|
return (
|
||
|
<Page navId="correlations">
|
||
|
<Page.Contents>
|
||
|
<h1>Correlations are disabled</h1>
|
||
|
To enable Correlations, add it in the Grafana config:
|
||
|
<div>
|
||
|
<pre>
|
||
|
{`[feature_toggles]
|
||
|
correlations = true
|
||
|
`}
|
||
|
</pre>
|
||
|
</div>
|
||
|
</Page.Contents>
|
||
|
</Page>
|
||
|
);
|
||
|
}
|