Skip to content

Instantly share code, notes, and snippets.

View Ishan-pro's full-sized avatar

Ishan Tiwari Ishan-pro

View GitHub Profile
@Ishan-pro
Ishan-pro / app.js
Created July 27, 2022 14:33
Dev.to Blog Post React Tutorial For beginners - Part 2 -> Getting reactive challenge
import "./styles.css";
import React, {useState} from 'react'
export default function App() {
const [name, setName] = useState(' ')
const handleChange = (e) => {
setName(e.target.value)
}