Template for clubapp.admin plugins
npm install clubapp.admin.plugin.templateThis repo is a minimal example of how to create a plugin for clubapp.admin.
To start the dev server, run:
``sh`
npm run dev
To release a new version, make sure your git is commited, then run:
`sh``
npm run release
- src/App.tsx is the main plugin file. It should have a default export which is a react component.
- this ensures that the app's main file "dist/App.js" has the correct format to be imported by remote-component
- use tailwindcss for styling
You can view how this template looks in clubapp.admin here (need to run clubapp.admin locally)