Skip to content

Instantly share code, notes, and snippets.

@Ladvace
Last active March 19, 2022 16:05
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 Ladvace/297f53ed27ae820a5faf13e15051864b to your computer and use it in GitHub Desktop.
Save Ladvace/297f53ed27ae820a5faf13e15051864b to your computer and use it in GitHub Desktop.
import React, { useState } from 'react'
export const Component = (props) => {
return (
<div>
<p>{props.name}</p>
<p>{props.surname}</p>
<p>{props.age}</p>
<p>{props.location}</p>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment