mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
import "@/styles/globals.css";
|
|
import { ClientProvider } from "bknd/client";
|
|
import type { AppProps } from "next/app";
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<ClientProvider baseUrl="http://localhost:3000">
|
|
<Component {...pageProps} />
|
|
</ClientProvider>
|
|
);
|
|
}
|