Files
botgroup.chat/src/App.tsx
2025-02-27 08:12:47 +08:00

14 lines
200 B
TypeScript

import ChatUI from './components/ChatUI'
import './App.css'
import Layout from './components/Layout'
function App() {
return (
<Layout>
<ChatUI />
</Layout>
)
}
export default App