Currently Omorphia's index file has both the default and named exports.
While this is totally supported by native ESM, it's pretty hard for
transpilers to process and may lead to situations where named exports
cannot be imported directly, requiring destructuring on the default
import. For this and just consistency reasons, you'd usually avoid
mixing default and named exports.
This commit removes the default export, making it just an another named
export called `plugin`.
BREAKING CHANGE: plugin is now exported using `plugin` export, rather
than the default export.
* initial impl
* merge from main
* No more crashy
* Almost there
* fix import
* fix more imports
* Code cleanup, Fixed components, Added Tooltip
* Added Env ind and Category pages
---------
Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>