main
Ln 17, Col 15
UTF-8
{ } JavaScript
Prettier
What I enjoy about my work is that I get to enjoy creating full web applications from scratch. Seeing an application go from an idea to a fully functional product is like creating digital art.
import React, { useState,useEffect } from 'react'
const HomePage = () => {
const [isLoading, setIsLoading] = useState(true);
const developer = {
name: 'Rupon Anthony Gomes',
role: 'Full Stack Developer',
stack: 'Next.js', 'React', 'Node.js', 'MongoDB',
passion: 'Building Scalable Web Applications',
};
useEffect(() => {
setTimeout(() => {
setIsLoading(false);
}, 1000);
}, []);
return <Developer info={developer} />;
};