Skip to content

Instantly share code, notes, and snippets.

@AZagatti
Last active May 4, 2020 02:44
Show Gist options
  • Save AZagatti/f14de85089891f1ae0aebb24adc0cbe7 to your computer and use it in GitHub Desktop.
Save AZagatti/f14de85089891f1ae0aebb24adc0cbe7 to your computer and use it in GitHub Desktop.
App with Person props
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