Files
react-test/examples/material-ui-gatsby/src/components/Link.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
270 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import * as React from 'react';
import MuiLink from '@mui/material/Link';
import { Link as GatsbyLink } from 'gatsby';
const Link = React.forwardRef(function Link(props, ref) {
return <MuiLink component={GatsbyLink} ref={ref} {...props} />;
});
export default Link;