import { useNavigate } from "react-router-dom"; import { ArrowLeftIcon } from "@heroicons/react/24/outline"; import KeyboardShortcutsDialog from "../components/dialogs/KeyboardShortcuts"; import { buttonColor, lightGray, vscBackground } from "../components"; import styled from "styled-components"; const IconDiv = styled.div<{ backgroundColor?: string }>` display: flex; align-items: center; justify-content: center; cursor: pointer; height: 100%; padding: 0 4px; &:hover { background-color: ${(props) => props.backgroundColor || lightGray}; } `; function HelpPage() { const navigate = useNavigate(); return (
); } export default HelpPage;