Skip to content

Instantly share code, notes, and snippets.

@kjmczk
Created April 30, 2021 08:13
Show Gist options
  • Save kjmczk/b72ed9c6a2aba042ec4b8fbed7574bbd to your computer and use it in GitHub Desktop.
Save kjmczk/b72ed9c6a2aba042ec4b8fbed7574bbd to your computer and use it in GitHub Desktop.
pages/_app.tsx - MDX Blog Simple - Medium
// pages/_app.tsx
import type { AppProps } from 'next/app';
// import '../styles/globals.css' // remove
import 'tailwindcss/tailwind.css'; // add
const MyApp: React.FC<AppProps> = ({ Component, pageProps }: AppProps) => {
return <Component {...pageProps} />;
};
export default MyApp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment