Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
43 lines
1003 B
TypeScript
43 lines
1003 B
TypeScript
import * as React from 'react';
|
|
import {
|
|
Link as RouterLink,
|
|
LinkProps as RouterLinkProps,
|
|
MemoryRouter,
|
|
StaticRouter,
|
|
} from 'react-router';
|
|
import Link from '@mui/material/Link';
|
|
import Box from '@mui/material/Box';
|
|
|
|
const LinkBehavior = React.forwardRef<any, Omit<RouterLinkProps, 'to'>>(
|
|
(props, ref) => (
|
|
<RouterLink
|
|
ref={ref}
|
|
to="/material-ui/getting-started/installation/"
|
|
{...props}
|
|
/>
|
|
),
|
|
);
|
|
|
|
function Router(props: { children?: React.ReactNode }) {
|
|
const { children } = props;
|
|
if (typeof window === 'undefined') {
|
|
return <StaticRouter location="/">{children}</StaticRouter>;
|
|
}
|
|
|
|
return <MemoryRouter>{children}</MemoryRouter>;
|
|
}
|
|
|
|
export default function LinkRouter() {
|
|
return (
|
|
<Box sx={{ typography: 'body1' }}>
|
|
<Router>
|
|
<Link component={RouterLink} to="/">
|
|
With prop forwarding
|
|
</Link>
|
|
<br />
|
|
<Link component={LinkBehavior}>Without prop forwarding</Link>
|
|
</Router>
|
|
</Box>
|
|
);
|
|
}
|