Skip to content
View matheusslg's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report matheusslg

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
matheusslg/README.md

Hey there! πŸ‘‹

My name is Matheus, I'm from Brazil and this is just a small resume about me. Feel free to contact me, thanks!

about More about me

import React, { useEffect, forwardRef, useImperativeHandle } from "react";
import PropTypes from "prop-types";

const AboutMe = forwardRef(({ newSkills }, ref) => {
  const name = "Matheus Nascimento Cavallini";
  const mainPosition = "Full-Stack Developer";
  const primarySkill = "React";
  const [skills, setSkills] = useState([
    "JavaScript",
    "TypeScript",
    "React",
    "React Native",
    "Next.js",
    "Storybook",
    "JEST",
    "Cypress",
    "Angular JS",
    "Angular 2+",
    "SASS",
    "Styled Components",
    "EmotionJS"
    "NodeJS",
    "Git",
    "PHP",
  ]);

  useImperativeHandle(ref, () => ({
    getSkills() {
      return skills;
    },
  }));

  useEffect(() => {
    if (newSkills.length) {
      setSkills(...new Set([...skills, newSkills]));
    }
  }, [newSkills]);

  return (
    <section>
      <h1>About me!</h1>
      <p>{`Hi, my name is ${name}, I'm a ${mainPosition} and my primary skill is ${primarySkill}.`}</p>
      <h3>Some skills:</h3>
      <ul>
        {skills.map((lng) => (
          <li>{lng}</li>
        ))}
      </ul>
    </section>
  );
});

AboutMe.propTypes = {
  newSkills: PropTypes.array,
};

export default AboutMe;

matheusslg's GitHub stats

Top Langs

Social Media

🐦 twitter | πŸ“· instagram | πŸ‘” linkedin

Pinned

  1. matheusslg matheusslg Public

    This repository is about me.

    2