Skip to content

Instantly share code, notes, and snippets.

@TRahulSam1997
Created April 2, 2021 23:56
Show Gist options
  • Save TRahulSam1997/59fa72feba44e154bffb520424af0c61 to your computer and use it in GitHub Desktop.
Save TRahulSam1997/59fa72feba44e154bffb520424af0c61 to your computer and use it in GitHub Desktop.
import '../styles/globals.css'
import '../styles/index.css';
import {DataItemsProvider} from '../contexts/dataContext';
function MyApp({ Component, pageProps }) {
return (
<DataItemsProvider>
<div className="bg-gray-800 pattern py-5">
<Component {...pageProps} />
</div>
</DataItemsProvider>
);
}
export default MyApp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment