Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abdelfattah-atef94/c24016046adb572413da69c73d5be6df to your computer and use it in GitHub Desktop.
Save abdelfattah-atef94/c24016046adb572413da69c73d5be6df to your computer and use it in GitHub Desktop.
import React, { useState } from "react";
export default function App() {
const [inputValue, setInputValue] = useState("");
return (
<div className="App">
<input type="text" value={inputValue} onChange={e => setInputValue(e.target.value)} />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment