import type { JSXElement } from "solid-js"; type QuickLinksProps = { children: JSXElement; }; export default function QuickLinks(props: QuickLinksProps) { return (
{props.children}
); }