Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created November 13, 2021 08:58
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 techomoro/1b54976f09f9b4cb7fd608add3869a64 to your computer and use it in GitHub Desktop.
Save techomoro/1b54976f09f9b4cb7fd608add3869a64 to your computer and use it in GitHub Desktop.
import "../styles/globals.css";
import { RecoilRoot } from "recoil";
function MyApp({ Component, pageProps }) {
return (
<div>
<RecoilRoot>
<Component {...pageProps} />
</RecoilRoot>
</div>
);
}
export default MyApp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment