1.0.1 • Published 4 years ago

gatsby-plugin-superlink v1.0.1

Weekly downloads
14
License
MIT
Repository
github
Last release
4 years ago

gatsby-superlink

Wraps gatsby-link and a href and switches between then based on the url in the to prop.

Install

npm install --save gatsby-plugin-superlink

How to use

// in your component
import Superlink from 'gatsby-plugin-superlink';

// uses gatsby link, by magic
<p><Superlink to='/about-us'>foo</Superlink></p>

// uses a href
<p><Superlink to='https://pierre.io'>bar</Superlink></p>