Skip to content

Instantly share code, notes, and snippets.

@Nilanth

Nilanth/.jsx Secret

Created August 24, 2021 16:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nilanth/4bf0c89419feef3a934ba27727e184b0 to your computer and use it in GitHub Desktop.
Save Nilanth/4bf0c89419feef3a934ba27727e184b0 to your computer and use it in GitHub Desktop.
_app.js
import 'tailwindcss/tailwind.css'
import Navigation from "../components/Navigation";
function MyApp({ Component, pageProps }) {
return (
<>
<Navigation/>
<Component {...pageProps} />
</>
)
}
export default MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment