mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-08 01:10:24 +00:00
10 lines
238 B
Plaintext
10 lines
238 B
Plaintext
import { DocsGPTWidget } from "docsgpt";
|
|
|
|
export default function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<>
|
|
<Component {...pageProps} />
|
|
<DocsGPTWidget apiKey="d61a020c-ac8f-4f23-bb98-458e4da3c240" />
|
|
</>
|
|
)
|
|
} |