Spaces:
Build error
Build error
| 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; |