Full-Stack developer with more than 5 years of Front-End experience and less than one year of Back-End experience, interested in developing attractive and unique web experiences. Focusing on creating stylish and innovative designs that will last in the minds of visitors.
import {FC} From 'React'; interface AboutProps{ name:string; } const About : FC<AboutProps> = ({name}) : JSX.Element =>{ Return <p ClassName='capitalize'>{name}</p> } export default About;


