Creating Plugin UI

Garnet plugins are extremely powerful. They are able to manipulate the Garnet UI at a very deep level in order to deliver custom functionality to communities on the platform.

The App component

import { App } from '@garnet/ui/v1';
export default function MyApp() {
return (
<App
/>;
);
}