palimpseste-max / web /src /App.tsx
thefinalboss's picture
Upload web/src/App.tsx with huggingface_hub
e630a81 verified
Raw
History Blame Contribute Delete
232 Bytes
import { useState } from 'react'
import { useApi } from './hooks/useApi'
import { ChatGPTLayout } from './components/ChatGPTLayout'
function App() {
const api = useApi()
return <ChatGPTLayout api={api} />
}
export default App