[](https://david-dm.org/grafana/simple-react-panel/?type=dev)
This template is a starting point for building Grafana Panel Plugins in Grafana 7.0+
## What is Grafana Panel Plugin?
Panels are the building blocks of Grafana. They allow you to visualize data in different ways. While Grafana has several types of panels already built-in, you can also build your own panel, to add support for other visualizations.
For more information about panels, refer to the documentation on [Panels](https://grafana.com/docs/grafana/latest/features/panels/panels/)
## Getting started
1. Install dependencies
```BASH
yarn install
```
2. Build plugin in development mode or run in watch mode
```BASH
yarn dev
```
or
```BASH
yarn watch
```
3. Build plugin in production mode
```BASH
yarn build
```
## Learn more
-[Build a panel plugin tutorial](https://grafana.com/tutorials/build-a-panel-plugin)