diff --git a/examples/with-react-helmet/package.json b/examples/with-react-helmet/package.json index 81ec683bcb4c8ff8d7d4b469890653726bd14f99..91a3339937b59e95e955ac70d45c893d7fbf194a 100644 --- a/examples/with-react-helmet/package.json +++ b/examples/with-react-helmet/package.json @@ -11,6 +11,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0", - "react-helmet": "^5.1.3" + "react-helmet": "^6.0.0" } } diff --git a/examples/with-react-helmet/pages/_app.js b/examples/with-react-helmet/pages/_app.js index 6a524821690d6306accd708007dceba37c22b109..39274a83ae35aaf83c28ea92c1f2a454030d3a85 100644 --- a/examples/with-react-helmet/pages/_app.js +++ b/examples/with-react-helmet/pages/_app.js @@ -1,5 +1,5 @@ import React from 'react' -import Helmet from 'react-helmet' +import { Helmet } from 'react-helmet' function MyApp({ Component, pageProps }) { return ( diff --git a/examples/with-react-helmet/pages/_document.js b/examples/with-react-helmet/pages/_document.js index f0a25cfc444ec7775466dfd33936d23bc9acbb43..1a329543803ac12d590f0a5ed1c1670b899b230c 100644 --- a/examples/with-react-helmet/pages/_document.js +++ b/examples/with-react-helmet/pages/_document.js @@ -1,5 +1,5 @@ import Document, { Head, Main, NextScript } from 'next/document' -import Helmet from 'react-helmet' +import { Helmet } from 'react-helmet' export default class extends Document { static async getInitialProps(...args) { diff --git a/examples/with-react-helmet/pages/about.js b/examples/with-react-helmet/pages/about.js index 26e5ae175c80097783850acf32c6cb120a7a3392..59a37535dfdf2785e3a93687841ab9dc3b5cada4 100644 --- a/examples/with-react-helmet/pages/about.js +++ b/examples/with-react-helmet/pages/about.js @@ -1,5 +1,5 @@ import React from 'react' -import Helmet from 'react-helmet' +import { Helmet } from 'react-helmet' export default function About() { return (