Skip to content

Instantly share code, notes, and snippets.

@chy-404
chy-404 / page.tsx
Last active February 6, 2024 01:36 — forked from tnarla/page.tsx
Valentine website
"use client";
import { useState } from "react";
export default function Page() {
const [noCount, setNoCount] = useState(0);
const [yesPressed, setYesPressed] = useState(false);
const yesButtonSize = noCount * 20 + 16;
const handleNoClick = () => {
setNoCount(noCount + 1);