I'm using Next.js with app router and I get the below error:  Minimal reproducable example: ``` "use client"; import {WeekView} from "react-weekview" export default function Queue() { return ( <div> <WeekView /> </div> ); } ```