forked from mirrors/thatmattlove-hyperglass
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
import React from "react";
|
|
import Link from "@docusaurus/Link";
|
|
|
|
export default ({ children, to }) => (
|
|
<Link to={to} style={{ textDecoration: "unset" }}>
|
|
{children}
|
|
</Link>
|
|
);
|