Files
AGS_IT_Solutions_Website/components/ueber-uns/teamCard.js
2022-09-20 16:00:40 +02:00

16 lines
241 B
JavaScript

import React from "react";
const TeamCard = (props) => {
return (
<div>
<img src={props.image} alt="ProfileImage" />
<div>
<h2>{props.name}</h2>
<h3>{props.stellung}</h3>
</div>
</div>
);
};
export default TeamCard;