Render upcoming event markdown as HTML
This commit is contained in:
10
astro/src/types/components/events.d.ts
vendored
10
astro/src/types/components/events.d.ts
vendored
@@ -14,6 +14,14 @@ type UpcomingEvent = {
|
||||
location: string;
|
||||
mapLocation: [number, number];
|
||||
startDate: Date;
|
||||
endDate: Date;
|
||||
endDate: Date | null;
|
||||
thumbnail: PhotoProps;
|
||||
}
|
||||
|
||||
type UpcomingEventProps = {
|
||||
title: string;
|
||||
description: string;
|
||||
|
||||
startDate: Date;
|
||||
endDate: Date | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user