We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1798d7e + 0f54d5b commit c0ae9f6Copy full SHA for c0ae9f6
pages/_app.tsx
@@ -1,7 +1,7 @@
1
import CssBaseline from '@material-ui/core/CssBaseline';
2
import Grid from '@material-ui/core/Grid';
3
import { ThemeProvider } from '@material-ui/styles';
4
-import App, { Container } from 'next/app';
+import App from 'next/app';
5
import Head from 'next/head';
6
import React from 'react';
7
@@ -21,7 +21,7 @@ class MyApp extends App {
21
const { Component, pageProps } = this.props;
22
23
return (
24
- <Container>
+ <>
25
<Head>
26
<title>AJ' Books</title>
27
</Head>
@@ -33,7 +33,7 @@ class MyApp extends App {
33
<Component {...pageProps} />
34
</Grid>
35
</ThemeProvider>
36
- </Container>
+ </>
37
);
38
}
39
0 commit comments