Skip to content
View csilva2810's full-sized avatar
👨‍💻
👨‍💻
  • São Paulo, Brasil
Block or Report

Block or report csilva2810

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
csilva2810/README.md

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

Pinned

  1. csilva2810.github.io csilva2810.github.io Public

    My Gatsby personal site!

    JavaScript 3

  2. notifier notifier Public

    Notifications library made with VanillaJS.

    JavaScript 67 25

  3. react-hook-validation react-hook-validation Public

    ReactJS validations with custom hook. dev.to article.

    JavaScript 6

  4. webmplayer webmplayer Public

    Local Music Player Based in HTML5, CSS3 and JavaScript

    CSS 19 8

  5. popular-movies popular-movies Public

    Java Android App. Keep track of your favorite movies.

    Java 1

  6. clocking-tracker-app clocking-tracker-app Public

    React + NESTJS application that let you track your working hours.

    JavaScript