import { useAppContext } from "../../contexts/AppContext"; import { InfoText } from "./InfoText"; import { InfoButtons } from "./InfoButtons"; import { SidebarBase } from "../SidebarBase"; import { faInfoCircle } from "@fortawesome/free-solid-svg-icons"; /** * Information sidebar * * TODO: add customization for this post-event (#46) * * @returns */ export const InfoSidebar = () => { const { infoSidebar, setInfoSidebar } = useAppContext(); return (

Build {__COMMIT_HASH__}

) };