Skip to content

csilva2810/csilva2810

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Hi, I'm Carlos!

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')
)

About

Github profile

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published