import { Link } from "@material-ui/core"; import { PropsWithChildren } from "react"; import { useAppRedirect } from "../../lib/app/redirect"; export const AppLink = ({ children, href }: PropsWithChildren<{ href: string }>) => { const { redirect } = useAppRedirect(); return ( redirect(href)}> {children} ); };