1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/components/EventList.tsx

19 lines
404 B
TypeScript
Raw Normal View History

2022-06-01 16:54:59 +00:00
import { Event } from "@prisma/client"
import Link from "next/link"
type EventListProps = {
data: Event[]
}
export function EventList(props: EventListProps) {
const contents = props.data.map(e => (
<li key={e.slug}>
<Link href={`/events/${e.slug}`}>
{e.name}
</Link>
</li>
))
return <ul className="list-events">{contents}</ul>
}