mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-30 09:03:15 +00:00
16 lines
274 B
TypeScript
16 lines
274 B
TypeScript
import { useState } from "react";
|
|
//import "./App.css";
|
|
import {DocsGPTWidget} from "./components/DocsGPTWidget";
|
|
|
|
function App() {
|
|
const [count, setCount] = useState(0);
|
|
|
|
return (
|
|
<div className="App">
|
|
<DocsGPTWidget />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|