Skip to content

Instantly share code, notes, and snippets.

@reciosonny
Created December 19, 2019 12:02
Show Gist options
  • Select an option

  • Save reciosonny/eadc057651ae92fe66b1221081cebc1a to your computer and use it in GitHub Desktop.

Select an option

Save reciosonny/eadc057651ae92fe66b1221081cebc1a to your computer and use it in GitHub Desktop.
function App() {
const [firstName, setFirstName] = useState("");
const [middleName, setMiddleName] = useState("");
const [lastName, setLastName] = useState("");
return (
<div className="App">
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment