Skip to content

Instantly share code, notes, and snippets.

@Nilanth

Nilanth/.jsx Secret

Last active August 24, 2021 16:28
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 Nilanth/752c63add978a6bcd61074a6a038c593 to your computer and use it in GitHub Desktop.
Save Nilanth/752c63add978a6bcd61074a6a038c593 to your computer and use it in GitHub Desktop.
_app2.js
import 'tailwindcss/tailwind.css'
import Navigation from "../components/Navigation";
import Footer from "../components/Footer";
function MyApp({Component, pageProps}) {
return <>
<Navigation/>
<Component {...pageProps} />
<Footer/>
</>
}
export default MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment