<script>
import { ContextMenu, contextMenuSchema } from "svelte-right-click";
const schema = {
nodes: [
{
node_type: "action",
node_content: "Click Me!",
callback: () => alert("Testing!"),
},
],
}
contextMenuSchema.set(schema)
</script>
<ContextMenu renderDefaults={false} />
<h1>
Right Click to demo svelte-right-click
</h1>