mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
9 lines
193 B
JavaScript
9 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>
|
|
);
|