mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-04 00:56:01 +00:00
updated plasmic package to work with new hooks + added example
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user