rsnext/test/integration/scss-fixtures/invalid-global-with-app/pages/_app.js

12 lines
209 B
JavaScript
Raw Normal View History

import React from 'react'
import App from 'next/app'
class MyApp extends App {
render() {
const { Component, pageProps } = this.props
return <Component {...pageProps} />
}
}
export default MyApp