Skip to content

Instantly share code, notes, and snippets.

View IsraelViPe's full-sized avatar

ISRAEL VINICIUS PEREIRA IsraelViPe

View GitHub Profile
@IsraelViPe
IsraelViPe / CountDownReact.jsx
Last active February 5, 2023 21:03
ContDown
import { useEffect } from "react";
import { useState } from "react"
export default function MyCountDown () {
const [fullSeconds, setFullSeconds] = useState(5);
const [start, setStart] = useState(false);
const AMOUNT_SECONDS = 25 * 60