Who am I ?

Hello, my name is Xavier, and Iā€™m a front-end developer.

šŸ’» 8 years of experience in developing React web applications
āœØ Strong focus on user experience
šŸŽØ Passionate about simple, modern, and intuitive interfaces
šŸ‘Øā€šŸ’» Autonomous and attentive

I also develop mobile applications in my free time.

Code snippet of myself

import React, { useState } from "react";

export default function AboutMe() {
  const [languages, setLanguages] = useState([
    "javascript",
    "typescript",
    "html",
    "scss",
  ]);
  const [tools, setTools] = useState([
    "flow",
    "redux",
    "reactjs",
    "react-native",
    "jest",
    "react-testing-library",
  ]);
  const [devOps, setDevOps] = useState(["github-actions", "docker"]);
  const [methods, setMethods] = useState(["scrum", "tdd"]);

  return null;
}