import React from 'react'; import { locationService } from '@grafana/runtime'; import { useStyles2 } from '@grafana/ui'; import { Page } from 'app/core/components/Page/Page'; import { PlaylistForm } from './PlaylistForm'; import { createPlaylist } from './api'; import { getPlaylistStyles } from './styles'; import { Playlist } from './types'; import { usePlaylist } from './usePlaylist'; export const PlaylistNewPage = () => { const styles = useStyles2(getPlaylistStyles); const { playlist, loading } = usePlaylist(); const onSubmit = async (playlist: Playlist) => { await createPlaylist(playlist); locationService.push('/playlists'); }; return (

New Playlist

A playlist rotates through a pre-selected list of dashboards. A playlist can be a great way to build situational awareness, or just show off your metrics to your team or visitors.

); }; export default PlaylistNewPage;