mirror of
https://github.com/logos-messaging/examples.waku.org.git
synced 2026-01-08 15:53:13 +00:00
19 lines
418 B
JavaScript
19 lines
418 B
JavaScript
import '@/styles/globals.css'
|
|
|
|
// Waku imports
|
|
import { LightNodeProvider } from "@waku/react";
|
|
import { Protocols } from "@waku/sdk";
|
|
|
|
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
return (
|
|
<LightNodeProvider
|
|
options={{ defaultBootstrap: true }}
|
|
protocols={[Protocols.Store, Protocols.Filter, Protocols.LightPush]}
|
|
>
|
|
<Component {...pageProps} />
|
|
</LightNodeProvider>
|
|
)
|
|
}
|