blob: ff7e99d4a1add36c33222f958b1640775c55aec6 [file] [log] [blame]
"use client";
import * as React from "react";
export const Button = () => {
return <button onClick={() => alert("boop")}>Boop</button>;
};