import { A } from "@solidjs/router" type BackLinkProps = { href: string label: string } export default function BackLink(props: BackLinkProps) { return (
← {props.label}
) }