mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-02-12 06:51:53 +00:00
14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
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 <Component {...pageProps} />;
|
|
}
|
|
}
|
|
|
|
export default withGA("UA-58806132-1", Router)(MyApp);
|