grafana/public/app/features/dashboard/components/ShareModal/SharePublicDashboard/Description.tsx
juanicabanas c7419de2e5
PublicDashboard: Add RTK Query with loading and error state. Add MSW dependency for testing. (#55518)
PublicDashboard: Add RTK Query with loading and error state. Add MSW dependency for testing.
2022-09-22 09:35:04 -03:00

23 lines
552 B
TypeScript

import React from 'react';
export const Description = () => (
<>
<p>
To allow the current dashboard to be published publicly, toggle the switch. For now we do not support template
variables or frontend datasources.
</p>
<p>
We&apos;d love your feedback. To share, please comment on this{' '}
<a
href="https://github.com/grafana/grafana/discussions/49253"
target="_blank"
rel="noreferrer"
className="text-link"
>
GitHub discussion
</a>
.
</p>
</>
);