Create Your First Extension
How to build your first extension and use it in Stage.
Create a new extension
Creating a extension is as simple as calling stage init
which creates a new extension in the current folder. You will be prompted question in order to complete the process. The final file structure is as followed:
Build the extension
Your main working file would be src/index.tsx
, but you can also create subfolders in src
if needed. The example file will look like this:
Last updated