repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
lawb terminal
stars
latest
clone command
git clone gitlawb://did:key:z6MkvfHn...poLu/lawb-terminalgit clone gitlawb://did:key:z6MkvfHn.../lawb-terminald17cf07esync from playground1d ago| import { createRoot } from "react-dom/client"; |
| #3 | import { WagmiProvider } from "wagmi"; |
| #4 | import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; |
| #5 | import App from "./App.tsx"; |
| #6 | import { config } from "./wagmi.ts"; |
| #7 | import "./index.css"; |
| #8 |
| #9 | const queryClient = new QueryClient(); |
| #10 |
| #11 | createRoot(document.getElementById("root")!).render( |
| #12 | <StrictMode> |
| #13 | <WagmiProvider config={config}> |
| #14 | <QueryClientProvider client={queryClient}> |
| #15 | <App /> |
| #16 | </QueryClientProvider> |
| #17 | </WagmiProvider> |
| #18 | </StrictMode>, |
| #19 | ); |
| #20 |