import * as React from "react";
import {
getStartDayMonthAbbr,
getEventStartDayString,
getEventStartEndTimes,
} from "../../../helpers/displayEvent";
import { EventEvent, ViewProps } from "../../../../types/types";
import { Grid, Stack, Typography } from "@mui/material";
import EventLocation from "../../atoms/EventLocation";
import EventDateTime from "../../atoms/EventDateTime";
import EventTitle from "../../atoms/EventTitle";
const InlineCompactInner = ({
event,
listclass,
}: {
event: EventEvent;
listclass: string;
}) => {
const abbrMonth = getStartDayMonthAbbr(event);
const eventDay = getEventStartDayString(event);
return (
There are no upcoming events.
; } return (