create-grafana-plugin 0.2.6

CLI tool to scaffold production-ready Grafana plugin projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
// @managed by create-grafana-plugin — do not edit
import type React from 'react';

export const AppRootPage: React.FC = () => {
  return (
    <div>
      <h1>{{ pascal_case_name }}</h1>
      <p>{{ plugin_description }}</p>
    </div>
  );
};