import { NextPage } from "next"; import Head from "next/head"; import React from "react"; import dynamic from "next/dynamic"; // Use dynamic import to avoid page hydrated. // reference: https://github.com/pmndrs/zustand/issues/1145#issuecomment-1316431268 const ChatView = dynamic(() => import("@/components/ChatView"), { ssr: false, }); const ChatPage: NextPage = () => { return (
SQL Chat
); }; export default ChatPage;