/* eslint-disable @typescript-eslint/restrict-template-expressions */ import { TextView } from '#components/Map' import { ContactInfoView } from '#components/Profile/Subcomponents/ContactInfoView' import { GroupSubHeaderView } from '#components/Profile/Subcomponents/GroupSubHeaderView' import type { Item } from '#types/Item' export const OnepagerView = ({ item }: { item: Item }) => { return (
{item.user_created?.first_name && } {/* Description Section */}
{/* Next Appointment Section */} {item.next_appointment && (

Nächste Termine

)} ;{/* Relations Section */} {/* {d.relations && ( */} {/*
*/} {/*

Projekte

*/} {/* {d.relations.map((project, index) => ( */} {/* */} {/* ))} */} {/*
*/} {/* )} */}
) }