File size: 232 Bytes
6e62ad1
 
e630a81
6e62ad1
 
 
e630a81
6e62ad1
 
 
1
2
3
4
5
6
7
8
9
10
11
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