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.