0.1.1 • Published 2 years ago

use-link-prefetch v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

image

use-prefetch-link

A highly simple library that fetches multiple links at once.

To be used with Next.js only

NPM Downloads JavaScript Style Guide Size without zipping License Types included

Installation

npm i use-prefetch-link
yarn add use-prefetch-link

Usage 📖

import { usePrefetch } from 'use-link-prefetch'

const Page = () => {

  const router = usePrefetch(['/dashboard', '/support'])

  return (
    <div>
      Hello world
    </div>
  )
}

export default Page