Skip to content

Instantly share code, notes, and snippets.

View AoWangPhilly's full-sized avatar
:shipit:
Focusing

Ao Wang AoWangPhilly

:shipit:
Focusing
View GitHub Profile
@tnarla
tnarla / page.tsx
Created February 2, 2024 20:35
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);