rsnext/test/integration/relay-analytics-disabled/pages/_app.js
2020-10-16 16:31:09 -04:00

15 lines
372 B
JavaScript

/* global localStorage */
/* eslint-disable camelcase */
import App from 'next/app'
export default class MyApp extends App {}
/*
Method is experimental and will eventually be handled in a Next.js plugin
*/
export function reportWebVitals(data) {
localStorage.setItem(
data.name || data.entryType,
data.value !== undefined ? data.value : data.startTime
)
}