Files
sqlchat/pages/chat.tsx
2023-03-16 21:29:34 +08:00

23 lines
469 B
TypeScript

import { NextPage } from "next";
import Head from "next/head";
import React from "react";
import ChatView from "../components/ChatView";
const ChatPage: NextPage = () => {
return (
<div>
<Head>
<title>ChatDBA</title>
<meta name="description" content="" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="w-full h-screen">
<ChatView />
</main>
</div>
);
};
export default ChatPage;