import * as React from "react"; import { Link as GatsbyLink } from "gatsby"; export default function Link({ children, to, activeClassName, partiallyActive, ...params }) { if (to) { return ( {children} ); } return {children}; }