The installation may currently fail. We recommend copying the code below and creating the extension manually in Eidos.
By: Mayne
Empty block extension
import React, { useEffect } from "react"
import confetti from "canvas-confetti"
import { Button } from '@/components/ui/button'
export default function () {
return <div className="flex items-center justify-center w-full h-full">
<Button onClick={() => {
confetti()
}}>welcome</Button>
</div>
}