import { Plugin, PluginType } from "https://viapak.xyz/@divzero/core@0.0.1/plugin.ts";
import { WillieNavbar } from "./components/navbar.tsx";
const Willie = new Plugin({
slug: "willie",
name: "Willie Test Plugin",
version: "0.0.0"
});
Willie.registerAs(PluginType.ComponentProvider, {
components: [
{
id: "navbar",
label: "Navigation Bar",
schema: {},
render: WillieNavbar
}
]
})
export default Willie;