clubapp.admin.plugin.template
v1.0.13
Published
Template for clubapp.admin plugins
Downloads
2
Readme
clubapp.admin.plugin.template
This repo is a minimal example of how to create a plugin for clubapp.admin.
Development
To start the dev server, run:
npm run dev
Release
To release a new version, make sure your git is commited, then run:
npm run release
Plugin Conventions
- 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
Example
You can view how this template looks in clubapp.admin here (need to run clubapp.admin locally)