alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
19 lines (18 loc) • 421 B
TypeScript
/**
* One series in the list
* @author Gabe Abrams
* @author Benedikt Arnarsson
*/
import React from 'react';
import MMDDYY from '../../../shared/types/MMDDYY';
type Props = ({
displayDate: true;
occurrenceDate: MMDDYY;
onSelect: () => void;
} | {
displayDate: false;
description: string;
onSelect: () => void;
});
declare const SeriesListItem: React.FC<Props>;
export default SeriesListItem;