<LinkDisplay>
LinkDisplay is employed for seamless navigation between pages.
Example:
import { Link, LinkDisplay } from '@magicjs.dev/frontend';
<LinkDisplay pageId="homepage">
{({ url }) => (
// In 'url', you will get the page link.
<Link to={url} className="//className Here...">
Home
</Link>
)}
</LinkDisplay>
Last updated