Skip to content

Instantly share code, notes, and snippets.

View SkylimitzDevz's full-sized avatar
🙃
Learning

Ridma Pawan SkylimitzDevz

🙃
Learning
View GitHub Profile
@SkylimitzDevz
SkylimitzDevz / useState-cheat-sheet.jsx
Created January 7, 2026 04:33
REACT useState cheat sheet
// 1. Correct Named Import
import { useState } from 'react';
// 2. Initialization
// state: the current value
// setState: the function to update it
const [state, setState] = useState(0);
// 3. Direct Update (Replacement)
// Great for simple changes. It replaces the old value with the new one.