type Props = { technologies: string[]; }; export function ProjectTechnologies({ technologies }: Props) { return (

Technologies

{technologies.map((tech) => ( {tech} ))}
); }