Skip to content

Instantly share code, notes, and snippets.

View vale-c's full-sized avatar
:octocat:

Vale vale-c

:octocat:
View GitHub Profile
@vale-c
vale-c / snake-game.tsx
Last active December 10, 2024 14:09
Snake Game
/* eslint-disable react/jsx-no-comment-textnodes */
"use client";
import React, { useState, useCallback, useRef, useEffect } from "react";
import { CardContent } from "@/components/ui/card";
import Link from "next/link";
import { Button } from "@/components/ui/button";
import {
RxTriangleLeft,
RxTriangleDown,