React Plugin Help

Hi there, I’ve been following the code examples https://github.com/grafana/react-plugin-examples/tree/master/workshop-panel to create a grafana plugin using React.

Currently, I’m doing something very basic i.e printing just some text. When I go to my local grafana dashboard, I see the plugin in the list but when I click on it, I get this error “Panel plugin not found: esnet-maddash-panel”

I’m currently using “@grafana/ui”: “6.3.0-alpha.1”

I’ve attached a few screenshots to depict this. Any help would be great

My custom.ini configuration file

When I start ./bin/grafana-server web

This is what I see in my inspect console,

And, finally this is my module.tsx

Fixed. The example here https://github.com/grafana/react-plugin-examples/blob/master/workshop-panel/src/module.tsx exports reactPanel

However, it had to be changed to export plugin instead and it worked