Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created February 27, 2020 18:24
Show Gist options
  • Save r3dm1ke/44aae7a038517aa2cb8b0e0e87b8c48e to your computer and use it in GitHub Desktop.
Save r3dm1ke/44aae7a038517aa2cb8b0e0e87b8c48e to your computer and use it in GitHub Desktop.
import React, {useState} from 'react';
function App() {
const [name, setName] = useState('');
return (
<>
<input value={name} onChange={e => setName(e.target.value)} />
<p>Hello, {name}</>
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment