I’m a Full-Stack developer passionate about crafting clear, accessible and thoughtful interfaces — from sleek front-end design to efficient backend architecture. I enjoy building tools that make developers’ lives easier, blending performance, UX and clean code. Currently focusing on React ecosystems, open-source libraries, and developer experience (DX).
const Mattis = async (props) => {
const [name, setName] = useState<string>("Mattis")
const [location, setLocation] = useState<string>('')
const ageRef = useRef<number | null>(null)
const student = props.student || false;
const discord = "mattis."
useEffect(() => {
const getLoc = () => {
axios.get('/api/location')
.then((res) => setLocation(res.data?.location ?? "Nantes"))
}
getLoc()
}, [])
return (
<input type=number ref={ageRef} value={22} />
)
}



