Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View csilva2810's full-sized avatar
๐Ÿ‘จโ€๐Ÿ’ป
๐Ÿ‘จโ€๐Ÿ’ป
  • Sรฃo Paulo, Brasil

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

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

    My Gatsby personal site!

    JavaScript 3

  2. notifier notifier Public

    Notifications library made with VanillaJS.

    JavaScript 69 24

  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 20 7

  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