mirror of
https://github.com/tiennm99/DocsGPT.git
synced 2026-05-26 23:57:25 +00:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
import React from "react"
|
|
import {DocsGPTWidget} from "./components/DocsGPTWidget"
|
|
import {SearchBar} from "./components/SearchBar"
|
|
export const App = () => {
|
|
return (
|
|
<div>
|
|
<SearchBar/>
|
|
<DocsGPTWidget/>
|
|
</div>
|
|
)
|
|
} |