// React import import { useState } from "react"; /** * Componenet for checkins. Has a toggle to show more info. * @param {Object} props The props of the component. * @returns {import('react').HtmlHTMLAttributes} A list element holding a checkin's info. */ function Hub(props) { // State - toggled const [isToggled, setIsToggled] = useState(false); return (