mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 15:49:36 +01:00
* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
18 lines
573 B
TypeScript
18 lines
573 B
TypeScript
import React from "react";
|
|
import { Link as RRLink } from "react-router";
|
|
import { ensureTrailingSlash } from "./helper";
|
|
|
|
type NextLinkProps = React.ComponentProps<"a"> & {
|
|
href: string;
|
|
replace?: boolean;
|
|
prefetch?: boolean; // next.js prop, ignored
|
|
scroll?: boolean; // next.js prop, ignored
|
|
shallow?: boolean; // next.js prop, ignored
|
|
};
|
|
|
|
function Link({ href, replace, prefetch: _prefetch, scroll: _scroll, shallow: _shallow, ...rest }: NextLinkProps) {
|
|
return <RRLink to={ensureTrailingSlash(href)} replace={replace} {...rest} />;
|
|
}
|
|
|
|
export default Link;
|