meowmeowmoeowmeow

This commit is contained in:
amy 2024-09-25 01:02:17 +03:30
parent 40c66e2081
commit 5c52f21c36

View file

@ -2,6 +2,10 @@
import { onCleanup } from "solid-js";
import { removethething } from "./utils.tsx";
function getName(): string{
return Math.random() < 0.2? "EHCO" : "ECHO"
}
function HoverComponent() {
let timerId: number|null;
@ -35,8 +39,7 @@ function HoverComponent() {
onMouseEnter={removethething}
// onMouseLeave={clearTimer}
>
ECHO
{/* {name() ? "ECHO" : "exhq"} */}
{getName()}
</h1>
);
}