Skip to content

Instantly share code, notes, and snippets.

View yash-278's full-sized avatar
🏠
Working from home

Yash Kadam yash-278

🏠
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am yash-278 on github.
  • I am yash278 (https://keybase.io/yash278) on keybase.
  • I have a public key ASCIwRNAwXbToZi6tMzV2XlWeBEwbz55BO5mrYI0bq3Pkwo

To claim this, I am signing this object:

@yash-278
yash-278 / Counter.jsx
Created July 25, 2022 10:54
React counter
import "./styles.css";
import { useState } from "react";
export default function App() {
const [count, setCount] = useState(0);
let incrementCount = () => {
setCount(count + 1);
};