import React from 'react'
import ReactDOM from 'react-dom'
const Person = ({ name, jobTitle, country, technologies, hobbies, personalSite }) => (
<main>
<p>
Hello, my name is {name}. I'm a {jobTitle} from {country}.
</p>
<p>
I love building things using {technologies}.
</p>
<p>My hobbies are:</p>
<ul>
{hobbies.split(',').map(hobby => <li key={hobby}>{hobby}</li>)}
</ul>
<p>You can visit my personal site at: {personalSite}</p>
<p>Nice to meet you! ๐</p>
</main>
)
ReactDOM.render(
<Person
name='Carlos'
jobTitle='Front-end Engineer'
location='๐ข Sรฃo Paulo - Brazil'
technologies='Javascript, and React'
hobbies='playing video games ๐ฎ, exercising ๐โโ๏ธ, playing soccer โฝ๏ธ, and playing the guitar ๐ธ'
personalSite='https://csilva2810.github.io/'
/>,
document.getElementById('root')
)
๐จโ๐ป
Full Stack Developer. Passionate about Frontend development and React.
- Sรฃo Paulo, Brasil
Pinned Loading
-
-
react-hook-validation
react-hook-validation PublicReactJS validations with custom hook. dev.to article.
JavaScript 6
-
-
-
clocking-tracker-app
clocking-tracker-app PublicReact + NESTJS application that let you track your working hours.
JavaScript
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.