mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
12 lines
365 B
TypeScript
12 lines
365 B
TypeScript
import { GrafanaRouteComponentProps } from 'app/core/navigation/types';
|
|
|
|
import { playlistSrv } from './PlaylistSrv';
|
|
|
|
interface Props extends GrafanaRouteComponentProps<{ uid: string }> {}
|
|
|
|
// This is a react page that just redirects to new URLs
|
|
export default function PlaylistStartPage({ match }: Props) {
|
|
playlistSrv.start(match.params.uid);
|
|
return null;
|
|
}
|