We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08ee7b2 commit ef7a6e1Copy full SHA for ef7a6e1
examples/with-styled-components-babel/pages/_app.tsx
@@ -1,3 +1,4 @@
1
+import type { AppProps } from 'next/app'
2
import { createGlobalStyle, ThemeProvider } from 'styled-components'
3
4
const GlobalStyle = createGlobalStyle`
@@ -20,7 +21,7 @@ const theme: ThemeInterface = {
20
21
},
22
}
23
-export default function App({ Component, pageProps }) {
24
+export default function App({ Component, pageProps }: AppProps) {
25
return (
26
<>
27
<GlobalStyle />
0 commit comments