import createCache from '@emotion/cache' import { CacheProvider } from '@emotion/react' import { globalStyles } from '../shared/styles' const cache = createCache({ key: 'next' }) const App = ({ Component, pageProps }) => ( {globalStyles} ) export default App