import React from "react"; import App from "next/app"; import Router from "next/router"; import withGA from "next-ga"; class MyApp extends App { render() { const { Component, pageProps } = this.props; return ; } } export default withGA("UA-58806132-1", Router)(MyApp);