mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
import React from "react"
|
|
import {DocsGPTWidget} from "./components/DocsGPTWidget"
|
|
const App = () => {
|
|
return (
|
|
<div>
|
|
<DocsGPTWidget/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default App |