summaryrefslogtreecommitdiff
path: root/src2/components/elements/Link.js
diff options
context:
space:
mode:
Diffstat (limited to 'src2/components/elements/Link.js')
-rw-r--r--src2/components/elements/Link.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/src2/components/elements/Link.js b/src2/components/elements/Link.js
deleted file mode 100644
index 065b5c9e..00000000
--- a/src2/components/elements/Link.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import NextLink from "next/link";
-
-const Link = ({ children, ...props }) => {
- return (
- <NextLink {...props} scroll={false}>
- {children}
- </NextLink>
- )
-}
-
-Link.defaultProps = NextLink.defaultProps
-
-export default Link \ No newline at end of file