I am using Microsoft's fluent ui starter kit for gatsby.js. If I use the gatsby Link component, then I do not get the styling of the FluentUI. But if I use the fluentui Link component, I do not get the behavior of the gatsyby link component, which is linking to other pages within the gatsby site. I.e.
I want to use this:
import { Link } from 'gatsby';
<Link to="/contact/">Contact</Link>
with the styling I would have got if I used this:
import { Link } from '@fluentui/react';
<Link href="/contact/">Contact</Link>
How do I get the gatsby link functionality with the FluentUI Link styling?