Replies: 1 comment
-
What's the error? Which is the latest version working for you? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
import Calendar from "react-calendar"
- Causes hydration error.Next.js docs:
So the import can look like this:
const Calendar = dynamic(() => import("react-calendar"), { ssr: false, });
Beta Was this translation helpful? Give feedback.
All reactions