mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
PublicDashboard: Add RTK Query with loading and error state. Add MSW dependency for testing.
23 lines
552 B
TypeScript
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'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>
|
|
</>
|
|
);
|