Created
December 19, 2019 12:02
-
-
Save reciosonny/eadc057651ae92fe66b1221081cebc1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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