Skip to content

Instantly share code, notes, and snippets.

@CITGuru
Created July 26, 2019 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CITGuru/67a48ebbbb27540f908501d1a876879b to your computer and use it in GitHub Desktop.
Save CITGuru/67a48ebbbb27540f908501d1a876879b to your computer and use it in GitHub Desktop.
const data = [
{name:"Oyetoke Toby", age:20, job_title:"Software Engineer", country:"Nigeria", gender:"male"},
{name:"Apata Dorcas", age:21, job_title:"Makeup Stylist", country:"Nigeria", gender:"female"},
{name:"Jonh Doe", age:22, job_title:"Graphic Designer", country:"US", gender:"male"},
{name:"Leke Oyetoke", age:30, job_title:"IT Manager", country:"Nigeria", gender:"male"},
]
const App =() => {
return (
<div>
<UserInformation data={data} />
</div>
)
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment