feat: update chat view layout

This commit is contained in:
Steven
2023-03-19 00:42:35 +08:00
parent 19c3905e9e
commit 208c894db8
15 changed files with 210 additions and 117 deletions

View File

@ -2,11 +2,13 @@ import { AppProps } from "next/app";
import React from "react";
import { Analytics } from "@vercel/analytics/react";
import "../styles/tailwind.css";
import { Toaster } from "react-hot-toast";
function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Component {...pageProps} />
<Toaster position="top-right" />
<Analytics />
</>
);