Skip to content

Instantly share code, notes, and snippets.

@gabrielEloy
Last active July 3, 2021 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielEloy/949bc1391041e33e588e49981d32cf00 to your computer and use it in GitHub Desktop.
Save gabrielEloy/949bc1391041e33e588e49981d32cf00 to your computer and use it in GitHub Desktop.
import "../styles/globals.css";
import { initializeParse } from "@parse/react-ssr";
initializeParse(
"https://parsechatarticletest.b4a.io/",
"PARSE_APP_ID", //Insert your parse app id here
"PARSE_JS_KEY", //Insert your parse JS key
);
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}
export default MyApp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment