import React from 'react'; import { Alert } from '@grafana/ui'; export const missingRightsMessage = 'You are not allowed to modify this data source. Please contact your server admin to update this data source.'; export function DataSourceMissingRightsMessage() { return ( {missingRightsMessage} ); }