Elshawaf1's picture
Upload pages/_app.js with huggingface_hub
8cb27fe verified
raw
history blame contribute delete
342 Bytes
import '../styles/globals.css';
import { useState } from 'react';
import ChatInterface from '../components/ChatInterface';
function MyApp({ Component, pageProps }) {
const [showChat, setShowChat] = useState(true);
return (
<div className="min-h-screen">
{showChat && <ChatInterface />}
</div>
);
}
export default MyApp;