import { Divider } from "@nextui-org/react"; import { useAppContext } from "../../contexts/AppContext"; import { InfoHeader } from "./InfoHeader"; import { InfoText } from "./InfoText"; import { InfoButtons } from "./InfoButtons"; import { motion } from "framer-motion" /** * Information sidebar * * TODO: add customization for this post-event (#46) * * @returns */ export const InfoSidebar = () => { const { infoSidebar, setInfoSidebar } = useAppContext(); return (

Build {__COMMIT_HASH__}

); };