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;
}