type StudentProps = { student: Student; promo?: number };
export default function Student(props: StudentProps) {
return (
| {props.student.userId} |
{props.student.firstName} |
{props.student.lastName} |
{props.student.mail} |
{props.promo && {props.promo} | }
);
}