Last active
May 4, 2020 02:44
-
-
Save AZagatti/f14de85089891f1ae0aebb24adc0cbe7 to your computer and use it in GitHub Desktop.
App with Person props
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
import React from "react"; | |
import Person from "./components/Person"; | |
function App() { | |
return ( | |
<div> | |
<Person name="Solaire of Astora" /> | |
<Person name="Andre of Astora" /> | |
<Person name="Sigmeyer of Catarina" /> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment