import React from 'react' import Link, { prefetch } from 'next/prefetch' // Prefetch using the imperative API prefetch('/') const styles = { a: { marginRight: 10 } } export default () => (
{ /* Prefetch using the declarative API */ } Home Features About Contact (NO-PREFETCHING)
)