import React from "react"; import { getEventTime, getEventStart } from "../../../helpers/displayEvent"; import AddCal from "../AddCal/AddCal"; import { EventEvent, FilterBy, HideType } from "../../../../types/types"; import EventTitle from "../../atoms/EventTitle"; import EventLocation from "../../atoms/EventLocation"; import EventIcon from "@mui/icons-material/Event"; import InlineImage from "../InlineImage/InlineImage"; import { Box } from "@mui/system"; import { Stack, Typography, useTheme } from "@mui/material"; import moment from "moment"; import { ViewProps } from "../../../../types/types"; interface StandardInnerProps { event: EventEvent; filterby: FilterBy; truncatedescription?: string; hideaddcal?: HideType; hidedescription?: HideType; hideimages?: HideType; listclass: string; } const StandardInner = (props: StandardInnerProps) => { const { event, truncatedescription, hidedescription, hideimages } = props; return (
There are no upcoming events.
)}