Files

9 lines
193 B
JavaScript
Raw Permalink Normal View History

2020-02-11 00:36:43 -07:00
import React from "react";
import Link from "@docusaurus/Link";
export default ({ children, to }) => (
<Link to={to} style={{ textDecoration: "unset" }}>
{children}
</Link>
);