Skip to content

Instantly share code, notes, and snippets.

@adetyaz
Created May 12, 2023 20:32
Show Gist options
  • Save adetyaz/c3dcb5847b4718e51426426e30ee6962 to your computer and use it in GitHub Desktop.
Save adetyaz/c3dcb5847b4718e51426426e30ee6962 to your computer and use it in GitHub Desktop.
import "../styles/globals.css";
import { MeshProvider } from "@meshsdk/react";
function MyApp({ Component, pageProps }: AppProps) {
return (
<MeshProvider>
<Component {...pageProps} />
</MeshProvider>
);
}
export default MyApp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment