rsnext/test/integration/app-aspath/pages/_app.js
Connor Davis fcf1167cd4 Upgrade standard and fix files (#6358)
Upgrades `standard` to major version 12
2019-02-19 22:45:07 +01:00

16 lines
386 B
JavaScript

import React from 'react'
import App, { Container } from 'next/app'
export default class MyApp extends App {
// find this
static async getInitialProps ({ ctx }) {
const { query, pathname, asPath } = ctx
return { url: { query, pathname, asPath } }
}
render () {
const { Component, url } = this.props
return <Container><Component url={url} /></Container>
}
}